Örnek
Bir işlev oluşturun ( check_abort() bir istemci komut dosyasını iptal eğer bir günlük mesaj yazar):
<?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");
?>
Tanımı ve Kullanımı
connection_aborted() işlev kontrolleri istemci bağlantısı olup olmadığı.
Sözdizimi
connection_aborted()
Teknik detaylar
Geri dönüş değeri: | Bağlantı iptal edildi ise, aksi halde 0 döndürür 1 döndürür |
---|---|
PHP Sürümü: | 4+ |
<PHP Çeşitli Referans