您好,我正在使用标准的 comet co 和 iframe,但离开页面,该方法继续在服务器上运行。我需要检测连接何时关闭。循环必须是永久性的,而(真的),我不能定期完成。有人可以帮我谢谢
后端;
set_time_limit(0);
//Turn of Apache output compression
// Necessary if you have gzip setup in your httpd.conf (e.g. LoadModule deflate_module modules/mod_deflate.so)
apache_setenv('no-gzip', 1);
ini_set('zlib.output_compression', 0);
//Disable all PHP output buffering
ini_set('output_buffering', 'Off');
ini_set('implicit_flush', 1);
ob_implicit_flush(1);
for ($i = 0, $level = ob_get_level(); $i < $level; $i++) {
ob_end_flush();
} //Flush all levels of the buffer to start
error_reporting(E_ALL);
while( true ){
$a = getAct();
if($a)
echo $a;
$randSleep = mt_rand(400000, 600000);
usleep($randSleep);
}