例
創建一個函數( 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其它參考