<?php
set_time_limit(0);
//以上三行不加上nginx下不执行,一次性显示出来
header('Content-Type: text/event-stream'); // 以事件流的形式告知浏览器进行显示
header('Cache-Control: no-cache'); // 告知浏览器不进行缓存
header('X-Accel-Buffering: no'); // 关闭加速缓冲
for ($i=50; $i>47; $i--)
{
echo $i."
";
ob_flush(); //此句不能少
flush();
sleep(1);
}
ob_end_flush();
?>