<?php
header('Content-Type: text/event-stream'); // 以事件流的形式告知浏览器进行显示
header('Cache-Control: no-cache'); // 告知浏览器不进行缓存
header('X-Accel-Buffering: no'); // 关闭加速缓冲
for($i=0;$i<10;$i++){
echo $i.'</br>';
sleep(1);
ob_flush();
flush();
}
?>
php实时输出内容
于 2024-07-23 18:45:57 首次发布