"; flush(); sleep(1);"/> "; flush(); sleep(1);">

Home  >  Article  >  Backend Development  >  http://www.12306.cn/mormhweb/ PHP real-time display output

http://www.12306.cn/mormhweb/ PHP real-time display output

WBOY
WBOYOriginal
2016-07-29 08:38:561585browse

//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. .

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn