不能在输出缓冲显示处理程序中使用输出缓冲

Cannot use output buffering in output buffering display handlers

我重新安装了 Apache,并从 PHP 5.3 切换到 5.6。一切正常,除了我在调用 ob_start():

时收到此错误
Cannot use output buffering in output buffering display handlers

我尝试在 PHP 中启用输出缓冲,但我仍然收到此错误:

output_buffering = 4096

可能您在输出缓冲回调中使用了缓冲函数,这在 php ob_start output_callback 文档中是不可能的。如果不是,它应该是您使用的输出处理程序,请检查您的 php.ini 并尽可能将其值设置为 "none"。

也许这个示例代码可以帮助您:

ob_start();
echo "test";
$content = ob_get_contents();
ob_end_clean();
var_dump($content);

您正在尝试在缓冲区回调中启动输出缓冲区。如果您使用此代码,它将生成该错误。但是,如果您从回调函数中删除 ob_start() 就可以了。

<?php
error_reporting(-1);

function callback($buffer){
    //you can't call ob_start here
    ob_start();
    return (str_replace("apples", "oranges", $buffer));
}

ob_start("callback");

?>
<html>
<body>
<p>It's like comparing apples to oranges.</p>
</body>
</html>
<?php
ob_end_flush();

尽管这是一个老问题,但我只是想补充一点,当系统在缓冲时内存不足时,也会出现同样的错误。

如果是这种情况,本主题中提到的错误将始终跟在 Allowed memory size of xxx bytes exhausted 错误之后。