例
创建一个函数( check_abort()写入日志消息,如果客户中止脚本:
<?php
function check_abort()
{
if (connection_aborted())
error_log ("Script $GLOBALS[SCRIPT_NAME]" .
"$GLOBALS[SERVER_NAME] was aborted by the user.");
}
// Some script to be executed here
// Call the check_abort function when the script ends
register_shutdown_function("check_abort");
?>
定义和用法
所述connection_aborted()函数检查是否客户端已断开。
句法
connection_aborted()
技术细节
返回值: | 返回1,如果连接已经中止,否则返回0 |
---|---|
PHP版本: | 4+ |
<PHP其它参考