PHP主动断开http连接
在执行一部分代码以后,php主动断开与浏览器的连接,然后继续执行下面的代码,用户不用处于等待状态。
echo '1234567890';
$size = ob_get_length();
header("Content-Length: " . $size);
ob_end_flush();
flush();
for($i=0;$i<5;$i++){
file_put_contents(time(), ' ');
sleep(3);
}
file_put_contents('end', ' ');