<?php set_time_limit(0); $i=1; while($i++) { echo $i,'<br />'; ob_flush();//冲刷出(送出)输出缓冲区中的内容 flush(); // 把产生的内容立即推送给浏览器 sleep(1); }