php 每隔几秒输出一个数字或者隔几秒后再继续执行代码 <?php for ($i=10; $i>0; $i--) { echo $i.'<br />'; ob_flush(); flush(); sleep(1); } ob_end_flush(); //下面是你得php代码了 ?>