gzip 压缩 utf-8 编码的 php 页面时出现问题。帮助!

发布于 2024-09-06 03:36:33 字数 281 浏览 5 评论 0原文

我在我的 php 页面顶部使用它:

if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip'))
    ob_start("ob_gzhandler");
else
    ob_start();

当使用 ANSI 编码保存页面时,页面被压缩。但是当我将页面编码更改为 utf-8 时,压缩失败。请帮忙!!!

我在 www.gidnetwork.com/tools/gzip-test.php 上测试压缩

i use this at top of my php page:

if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip'))
    ob_start("ob_gzhandler");
else
    ob_start();

when page is save with ANSI encoding page was compressed. but when i change page encoding to utf-8 compression was faild. please help!!!

i test compression on www.gidnetwork.com/tools/gzip-test.php

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

毁梦 2024-09-13 03:36:33

据猜测,当您保存时,您在 PHP 源文件中包含 BOM UTF-8 会破坏压缩流。确保以 UTF-8 无 BOM 格式保存文件。

By guess is that you are including a BOM in your PHP source file when you save in UTF-8 and that's corrupting the compressed stream. Make sure you save in the file in UTF-8 without BOM.

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