php comet 推送

WBOY
WBOYOriginal
2016-06-23 14:20:191432browse

php comet

set_time_limit(0);ob_start();$pad = str_repeat(' ',4000);echo $pad,'<br />';ob_flush();flush();  // 把产生的内容 立即送给浏览器而不要等脚本结束再一起送.$i=1;while($i++) {    echo $pad,'<br />';    echo $i,'<br />';    ob_flush();    flush();  // 把产生的内容 立即送给浏览器而不要等脚本结束再一起送.    sleep(1);}

这段代码是网上复制的,代码没问题,为什么在我wamp 无法实现呢?是否需要配置 apahce 或者 php.ini

回复讨论(解决方案)

编辑 php.ini,设置output_buffering=0 禁用output缓存

谢谢,我成0是不行的,我把他改成了Off就可以了,谢谢

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