如何在 Symfony2 中打开输出缓冲?
如何为 Sf2 应用程序的每个请求打开 output_buffering?
我需要它来使用 FirePHPBundle,但我更愿意在应用程序范围内使用它。
how do I turn on output_buffering for every request to my Sf2 app?
I need this to use the the FirePHPBundle, but I would prefer to have it application-wide.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
执行此操作的一个好地方是在 AppKernel 的
init
方法中,框架还注册各种错误处理程序和调试标志:这当然只会在开发环境中调用 ob_start
您无需担心调用
ob_start
在这里,因为正如 php 手册所述:A good place to do this is in AppKernel's
init
method where the framework also registers various error handlers and debug flags:This of course will call ob_start only in a development environment
You need not to worry about calling
ob_start
here because as the php manual states: