为 php 设置处理程序启用 gzip 压缩?

发布于 2024-11-08 21:52:39 字数 99 浏览 0 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你的他你的她 2024-11-15 21:52:39

测试页面是否被压缩的最简单方法是使用 Firebug 或 Chrome 开发者工具检查响应 Content-Encoding 标头值(如果正在压缩,它将显示 gzip )。

根据 php 文档:

您无法指定额外的输出
如果 zlib.output_compression 是则处理程序
在这里激活。

所以是的,将其留空。

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 show gzip if it's being compressed).

According to php docs:

You cannot specify additional output
handlers if zlib.output_compression is
activated here.

So yes, leave it blank.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文