PHP php实现动态逐行输出 exchen 9年前 (2016-10-12) 5615浏览 <?php for ($i=10; $i>0; $i--) { echo $i; ob_flush(); //把数据从PHP的缓冲中释放出来 flu...