69pao国产精品视频-久久精品一区二区二三区-精品国产精品亚洲一本大道-99国产综合一区久久

PHP connection_aborted() 函數(shù)

PHP connection_aborted() 函數(shù)

PHP Misc 參考手冊 PHP Misc 參考手冊

實例

創(chuàng)建一個函數(shù)(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() 函數(shù)檢查是否斷開客戶機。

語法

connection_aborted()

技術(shù)細(xì)節(jié)

返回值: 如果已終止連接則返回 1,否則返回 0。
PHP 版本: 4+

PHP Misc 參考手冊 PHP Misc 參考手冊
相關(guān)文章