ob_start() 会减慢脚本速度
我正在使用 ob_start('ob_gzhandler') 来压缩我的脚本。但是该脚本执行时间太长。我在register_shutdown_function()
的回调函数中添加了ob_end_flush()
方法,因为我无法直接在代码中添加ob_end_flush()
。这是延迟的问题吗? 请给我建议以加快我的脚本速度。谢谢
I am using ob_start('ob_gzhandler')
for compressing my script.But the script takes too much time for execution. I added ob_end_flush()
method in the callback function of register_shutdown_function()
because i can't add ob_end_flush()
directly in the code.Is this the problem for the delay?
Please give me suggestions to speed up my script.Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
建议?好吧...不要使用ob_gzhandler,使用前端能力来压缩输出 - apache、nginx 可以做到这一点。
Suggestions? Well... Don't use
ob_gzhandler
, use front-end abilities to zip output - apache, nginx can do this.