精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

PHP connection_aborted() 函數(shù)

PHP connection_aborted() 函數(shù)

PHP Misc 參考手冊(cè) PHP Misc 參考手冊(cè)

實(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");
?>

定義和用法

connection_aborted() 函數(shù)檢查是否斷開(kāi)客戶機(jī)。

語(yǔ)法

connection_aborted()

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

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

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