PHP connection_aborted() 函數(shù)

2018-11-21 16:14 更新

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ù)細節(jié)

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


PHP Misc 參考手冊 PHP Misc 參考手冊
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號