<?php
function check_abort()
{
if ( connection_aborted() )
error_log ("Script $GLOBALS[SCRIPT_NAME]" .
"$GLOBALS[SERVER_NAME] was aborted by the user.");
}
//要執行的一些代碼
// 在腳本結束時調用check_abort 函數
register_shutdown_function("check_abort");
?>
全站熱搜
<?php
function check_abort()
{
if ( connection_aborted() )
error_log ("Script $GLOBALS[SCRIPT_NAME]" .
"$GLOBALS[SERVER_NAME] was aborted by the user.");
}
//要執行的一些代碼
// 在腳本結束時調用check_abort 函數
register_shutdown_function("check_abort");
?>
留言列表