标签: php compression ob-start
如何查看是否
ob_start("ob_gzhandler");
是否正在使用或不使用它来测试差异?
谢谢,
答案 0 :(得分:4)
使用Firebug的“网络”标签,检查Content-Encoding标头的值是gzip还是deflate。
Content-Encoding
gzip
deflate
或者,试试online gzip test。
See this question
答案 1 :(得分:1)
您可以使用ob_list_handlers来获取正在使用的处理程序数组。
ob_list_handlers