PHP ob_start() 问题
我是否允许在我的 php 文件中包含两个或多个 ob_start();
如果可以的话,结束一个 ob_start();
并启动另一个的正确方法是什么?
Am I allowed to have two or more ob_start();
in my php files if so what is the proper way to end one ob_start();
and start another?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从手册:
除了堆叠(嵌套)之外,您还可以按顺序拥有单独的块。
From the manual:
In addition to stacking (nesting), you can have separate blocks in sequence.
您可以在一页上执行多个 ob_start() 操作。您可以用 ob_end_clean() 结束 ob_start()。
You are allowed to do more than one ob_start() on a page. You end ob_start() with ob_end_clean().