Home > php教程 > PHP源码 > body text

PHP中开启gzip压缩的2种方法_php技巧

PHP中文网
Release: 2016-05-25 17:07:11
Original
1064 people have browsed it

这篇文章主要介绍了PHP中开启gzip压缩的2种方法,本文介绍了php配置文件与开启方法、php文件开启方法,需要的朋友可以参考下

网页开启gzip压缩以后,其体积可以减小20%~90%,可以节省下大量的带宽,从而减少页面响应时间,提高用户体验。

php配置改法:

代码如下:

zlib.output_compression = On
;开启gzip功能
zlib.output_compression_level = 4
;gzip压缩级别,1~9,建议3~5
;zlib.output_handler =
;gzip压缩方式,建议注释
Copy after login

php文件改法:

建议在页面开头写上,可以写到头部公共文件

代码如下:

if( !headers_sent() && // 如果页面头部信息还没有输出 
extension_loaded("zlib") && // 而且php已经加载了zlib扩展 
strstr($_SERVER["HTTP_ACCEPT_ENCODING"],"gzip")) //而且浏览器接受GZIP
{
  ini_set('zlib.output_compression', 'On');
  ini_set('zlib.output_compression_level', '4');
}
Copy after login


Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template