Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ob_flush()当我在本地主机(通过 MAMP)上调用 PHP函数时,出现以下错误:
ob_flush()
注意:ob_flush() [ref.outcontrol]:刷新缓冲区失败。没有要刷新的缓冲区。
我能找到的唯一解决方案是在它前面加上前缀@,但这对我来说似乎不是一个真正的解决方案。是什么导致了问题?
@
错误消息似乎暗示您在调用ob_flush(). 你在调用ob_start()之前打电话了ob_flush()吗?
ob_start()
如果你想使用ob_flush你必须先调用ob_start()- 最好在你的页面顶部。
ob_flush
不确定它是否符合您的需求,但您可能还想尝试普通的旧的flush(),只是猜测。
flush()