这与输出缓冲有关。如果打开输出缓冲,输出不会立即发送到客户端,而是会等到缓冲一定量的数据。这通常会提高性能,但会导致像您这样的问题。
简单的解决方案不需要更改任何php.ini
设置,只需将其放在脚本的开头:
<?php
while (@ob_end_flush());
?>
这将立即刷新并禁用所有输出缓冲。
(来源:http ://www.php.net/manual/en/function.ob-end-flush.php#example-460 )
您可能还想阅读有关输出控制的 PHP 手册。此处php.ini
列出了相关设置。
如果您想确保事情正在被发送(即在一项耗时的任务之前),请flush()
在适当的时间致电。
编辑:
事实上,浏览器可能有自己的缓冲区,尤其是在没有明确设置 Content-Type 的情况下(浏览器需要嗅探文件的 MIME 类型)。如果是这种情况,您将无法控制浏览器的行为。
可能解决它的一种方法是显式设置 Content-Type:
header("Content-Type: text/plain"); // if you don't need HTML
// OR
header("Content-Type: text/html");
但这不能保证有效。它适用于我的 Firefox 但不适用于Chrome。
无论如何,您的最终代码应如下所示:
header("Content-Type: text/html"); // Set Content-Type
while (@ob_end_flush()); // Flush and disable output buffers
while ($a++ < 5) {
$b = 0;
while ($b++ < 1015) {
echo "H";
//flush(); // In fact because there is no significant delay, you should not flush here.
}
echo "<br><br>\n";
flush(); // Flush output
sleep(1);
}