是否可以确定当前代码输出是否正在 PHP 中缓冲?
有没有一种方法可以确定文件中随机位置的回显/打印是否正在使用 ob_start 进行缓冲?谢谢
Is there a method to determine, whether the echo/print in a random place in a file is being buffered with ob_start
? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
ob_get_level()
将返回当前输出缓冲级别(活动输出缓冲区的数量,因为您可以连续多次调用ob_start()),因此返回值0表示没有活动输出缓冲ob_get_level()
will return the current output buffering level (the number of output buffers active, since you can callob_start()
multiple times in a row), so a return value of 0 means no output buffering is active您可以使用
ob_get_level()
功能:You can use the
ob_get_level()
function:是的,有...
参见
ob_get_level()
:但请务必阅读该页面上的注释可以了解正在发生的情况,因为某些
php.ini
设置可以在脚本启动之前设置输出缓冲区...Yes there is...
See
ob_get_level()
:But be sure to read the comments on that page for insight as to what's going on, as certain
php.ini
settings can set a output buffer from before the start of the script...您可以使用 ob_get_clean() 来查看该缓冲区中隐藏的内容。
You could use
ob_get_clean()
to see what's hiding inside that buffer.