<?php
// 忽略用户中止并允许脚本
// 永远运行
ignore_user_abort(true);
set_time_limit(0);
echo 'Testing connection handling in PHP';
// Run a pointless loop that sometime 
// hopefully will make us click away from 
// page or click the "Stop" button.
while(1)
{
    // 连接失败?
    if(connection_status() != CONNECTION_NORMAL)
    {
        break;
    }
    // 睡眠 10 秒
    sleep(10);
}
// If this is reached, then the 'break' 
// was triggered from inside the while loop
// So here we can log, or perform any other tasks
// we need without actually being dependent on the 
// browser.
?>