如何判断 ob_gzhandler 是否正常工作?
我如何检查是否
ob_start("ob_gzhandler");
有效并测试有或没有它的差异?
谢谢,
How can I check to see if
ob_start("ob_gzhandler");
is working and test the difference with or without it?
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 Firebug 的“Net”选项卡,检查
Content-Encoding
标头值为gzip
或deflate
。或者,尝试在线 gzip 测试。
查看此问题。
Using the "Net" tab of Firebug, check to see if the
Content-Encoding
header has a value ofgzip
ordeflate
.Or, try the online gzip test.
See this question.
您可以使用
ob_list_handlers
获取正在使用的处理程序数组。You can use
ob_list_handlers
to get an array of handlers that are in use.