Display output in parts in PHP

前端 未结 6 856
春和景丽
春和景丽 2020-11-29 11:59

I have this code:

\";          
    usleep(100000); 
}

?>

I would like to

6条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-29 12:27

    Another perhaps quicker way is to do

     
    

    to tell php to flush the output buffer after each output, not at the end of the file being processed.

提交回复
热议问题