PHP中的某些进程会在消息发送时发送消息。
for ($i = 0; $i < 10; $i++) {
echo "message $i<br>";
sleep(3);
}
但是在此过程结束之前,用户看不到任何消息。 禁用PHP中的输出缓冲。 我是Apache-server的web托管客户端。 如何防止.htaccess中的输出缓冲?
在PHP中
ini_set('output_buffering', 0);
- 没效果ini_set('output_buffering', 'off');
- 没效果while(ob_end_flush()); flush();
- 没效果ob_implicit_flush(true); ob_end_clean();
- 没效果在.htaccess
php_flag output_buffering off
- 没效果php_value implicit_flush on
- 没效果仅限作品:
echo str_repeat(' ', 32768);
但是太糟糕了。