HTTP标头差异 - 逐步加载页面

时间:2012-07-27 15:06:36

标签: php zend-framework http-headers

我有一个HTML页面,当它逐步完成一个过程时会显示一个进度条。它使用flush()将数据发送到浏览器。我试图让它在Zend进程中工作,我通过专门发送标题,内容然后用退出命令结束进程来短路。

HTML页面正确显示(进度条逐步完成)。 Zend / PHP页面仅显示已完成的页面(而不是步骤)。我假设这是一个标题问题,因为方法(flush())是相同的。

在Chrome中,HTML页面的标题显示为:

HTTP/1.1 200 OK
Date: Fri, 27 Jul 2012 14:38:07 GMT
Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8r DAV/2 PHP/5.3.2
X-Powered-By: PHP/5.3.2
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Transfer-Encoding: chunked
Content-Type: text/html

Zend / PHP页面的标题显示为:

HTTP/1.1 200 OK
Date: Fri, 27 Jul 2012 14:44:13 GMT
Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8r DAV/2 PHP/5.3.2
X-Powered-By: PHP/5.3.2
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-cache
Pragma: no-cache
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
Transfer-Encoding: chunked
Content-Type: text/html; charset=utf-8

我在PHP中指定的唯一标头信息是:

header('Content-Type: text/html; charset=utf-8');

我正在使用此页面中的代码:http://w3shaman.com/article/php-progress-bar-script

任何帮助将不胜感激。感谢。

2 个答案:

答案 0 :(得分:0)

在致电ob_flush()之前致电flush(),因为Zend可以激活输出缓冲。

答案 1 :(得分:0)

马修有修复。在Zend / PHP页面中的flush()之前添加ob_flush()修复了问题。我不确定Zend是否按照建议激活输出缓冲。