为什么放到浏览器就不能随时输出呢?

WBOY
Release: 2016-06-06 20:35:37
Original
938 people have browsed it

命令行下可以一秒输出一次,可放在浏览器就不行,为什么呢?

<code>php</code><code>if (ob_get_level() == 0) {
    ob_start();    
}

for ($i=1; $i</code>
Copy after login
Copy after login

回复内容:

命令行下可以一秒输出一次,可放在浏览器就不行,为什么呢?

<code>php</code><code>if (ob_get_level() == 0) {
    ob_start();    
}

for ($i=1; $i</code>
Copy after login
Copy after login

首先, 解答问题, 这段代码看起来是flush并且输出了内容。其实真相是:

这段代码只是让php给apache(nginx/lighthttpd/…)输出了内容,至于apache(…/…)怎么输出给浏览器,那是人家的事啦。例如,apache、nginx(总之你output前进路上的所有关卡)的某些功能或者模块会将所有的输出cache,等你逼逼叨叨说完了人家一次总结出来,这里首当其冲自然是gzip啦。所以,想要输出正常,请关掉 gzip 和其他cache模块。<br> 那么是不是apache按照预想的输出后,Browser就可以按照预想的打印了呢?实际上,还有问题(好惨)。浏览器 它! 也! 会 Buffering! 例如:对于text/html,每遇到<br>则会flush;而plain/text 遇到换行符 flush。

所以,解决方案有是:

  1. 对于这个输出禁用gzip,并检查其他cache
  2. 告诉浏览器,老子是个plain/text
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!