Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建一个 wap 门户,想知道 Opera Mini 是否支持 gzip 编码?
然而,确实
ob_start("ob_gzhandler");
自动检查浏览器是否支持 gzip 并发送 gzip 编码的内容,还是我们需要手动检查?
我得到了答案,它支持 gzip、x-gzip、身份、放气
对于 gzip
<?php if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip')) ob_start("ob_gzhandler"); else ob_start(); ?>