<?php
echo str_pad(" ",1024);
echo date('h:i:s') . "<br />";
ob_flush();
flush();
//暂停 10 秒
sleep(10);
//重新开始
echo date('h:i:s');
ob_end_flush();
?>
<?php
echo str_pad(" ",1024);
echo date('h:i:s') . "<br />";
ob_flush();
flush();
//暂停 10 秒
sleep(10);
//重新开始
echo date('h:i:s');
ob_end_flush();
?>
转载于:https://www.cnblogs.com/xcxc/archive/2013/05/15/3079609.html