"; flush(); sleep(1);"/> "; flush(); sleep(1);">
Home > Article > Backend Development > http://www.12306.cn/mormhweb/ PHP real-time display output
//Real-time display output
ob_end_flush(); //Close cache
//echo str_repeat(" ",256); //Under IE, 256 bytes need to be sent first
set_time_limit(0);
for($i=0 ;$i<10;$i++){
echo "Now Index is :". $i."
";
flush();
sleep(1);
}
The above introduces the real-time display output of http://www.12306.cn/mormhweb/ PHP, including the content of http://www.12306.cn/mormhweb/. I hope it will be helpful to friends who are interested in PHP tutorials. .