为 php 设置处理程序启用 gzip 压缩?
我在 php.ini 文件中启用了 gzip 压缩,并将压缩级别设置为 9。我该如何设置 zlib.output_handler?我要把这个留空吗?我怎么知道我的页面是否真的被压缩了?
I have gzip compression enabled in the php.ini file and compression level set to 9. What do I set zlib.output_handler to? Do I leave this blank? and also how would I know if my pages are actually being compressed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
测试页面是否被压缩的最简单方法是使用 Firebug 或 Chrome 开发者工具检查响应
Content-Encoding
标头值(如果正在压缩,它将显示gzip
)。根据 php 文档:
所以是的,将其留空。
Easiest way to test if your pages are being compressed is to check the response
Content-Encoding
header value either using Firebug or Chrome developer tools (it will showgzip
if it's being compressed).According to php docs:
So yes, leave it blank.