php---php flush类输出缓冲

ob_end_clean();//修改部分 
for ($i=10; $i>0; $i--) 
{ 
echo $i; 
flush(); 
sleep(1); 
}

 

for ($i=10; $i>0; $i--) 
{ 
echo $i; 
ob_flush();
flush(); 
sleep(1); 
}

你可能感兴趣的:(php---php flush类输出缓冲)