<?php
echo date("h:i:s")."\n";
sleep(3);
echo date("h:i:s");
?>
这个会等到3秒完后才输出2个
怎么能即使输出 等3秒 再输出另一个呢只知道跟
output_buffering有关系,不知道具体怎么做。