ตัวอย่าง
สร้างฟังก์ชั่น ( 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() การตรวจสอบฟังก์ชั่นไม่ว่าจะเป็นลูกค้าได้ตัดการเชื่อมต่อ
วากยสัมพันธ์
connection_aborted()
รายละเอียดทางเทคนิค
กลับค่า: | ผลตอบแทนที่ 1 หากการเชื่อมต่อที่ได้รับการยกเลิกมิฉะนั้นก็จะส่งกลับ 0 |
---|---|
PHP เวอร์ชัน: | 4+ |
<PHP อื่น ๆ อ้างอิง