PHP connection_aborted() 函數(shù)
PHP connection_aborted() 函數(shù)
實(shí)例
創(chuàng)建一個(gè)函數(shù)(check_abort()),在客戶機(jī)終止腳本時(shí)寫入一條日志消息:
<?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");
?>
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() 函數(shù)檢查是否斷開(kāi)客戶機(jī)。
語(yǔ)法
connection_aborted()
技術(shù)細(xì)節(jié)
返回值: | 如果已終止連接則返回 1,否則返回 0。 |
---|---|
PHP 版本: | 4+ |

相關(guān)文章
- PHP 變量
- PHP 數(shù)據(jù)類型
- PHP 命名空間 namespace
- PHP array_column() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_intersect_key() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_product() 函數(shù)
- PHP array_push() 函數(shù)
- PHP array_splice() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP arsort() 函數(shù)
- PHP current() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP next() 函數(shù)
- PHP uksort() 函數(shù)
- PHP cURL 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP Error 和 Logging 函數(shù)