开启php gzip压缩的三种方法介绍。
方法1,使用apache2中的mod_deflate.so
1,打开apache中的mod_deflate.so
2,php.ini:
3,php.ini为
zlib.output_compression = Off
;zlib.output_compression_level = -1
4,apache增加如下:
AddOutputFilter DEFLATE html php js css
</IfModule>
方法2,使用php.ini中的zlib.output_compression
1,关闭apache中的mod_deflate.so
2,php.ini:
2,php.ini为
zlib.output_compression = Off
zlib.output_compression_level = 6(等级-1至9,默认为6即可)
方法3,用php的内置函数ob_gzhandler(必须保证extension中安装并开启了php_zlib.dll)
1,关闭apache中的mod_deflate.so
2,php.ini为
zlib.output_compression = On
;zlib.output_compression_level = -1
说明:
在方法三中,如果使用了php.ini中设置output_handler=ob_gzhandler,那么程序中就不需要再加ob_start('ob_gzhandler');
否则会双重压缩,实际上就是报错,一般程序会加以判断。
设置php.ini为默认关闭,程序中增加,但是如果是自己服务器,就设置ini默认开启。
建议使用第1种或者第2种:(特别建议使用第1种)
此时ob_start()可以自定义函数,写法如:ob_start("compress_html");
即可压缩html格式:
$pattern=array("/> *([^ ]*) *</","/<!--[^!]*-->/","'/\*[^*]*\*/'","/[\s]+/","/\r\n/","/\n/","/\t/");
$replace=array(">\\1<","",""," ","","","");
return ltrim(rtrim(preg_replace($pattern,$replace,$buffer)));
}
如此之后,不仅可以压缩html格式(也可以使用gzip)。
方法1的完整配置方案:
1,打开apache中的mod_deflate.so
2,php.ini为
3,php.ini为;
;zlib.output_compression = Off
;zlib.output_compression_level = -1
4,apache增加如下:
AddOutputFilter DEFLATE html php js css
</IfModule>
在需要压缩html格式的php头部使用如下程序:
function compress_html($buffer){//去除文件中的注释
$pattern=array("/> *([^ ]*) *</","/<!--[^!]*-->/","'/\*[^*]*\*/'","/[\s]+/","/\r\n/","/\n/","/\t/");
$replace=array(">\\1<","",""," ","","","");
return ltrim(rtrim(preg_replace($pattern,$replace,$buffer)));
}
如此便开启了php的gzip压缩功能,而且支持浏览器查看源文件时html自动压缩格式化,很好用的哦。
开启gzip压缩吧,特别对于资金不足的小站长们,带宽都是白花花的银子啊。
介绍:
Gzip对于纯文本内容的压缩效果最为显著,压缩率可达60%左右。
然而,百度蜘蛛对于Gzip压缩后的网页抓取效果似乎不是很好(曾有人做过实验),因此选择对站点的CSS和JS进行压缩。
当浏览器请求一个文件时,服务器会先对文件内容进行压缩,然后传输到客户端,客户端再进行解压。
如果在每次请求时都进行压缩,无疑会给站点造成负担。
本文介绍的方法,会先对可能被请求的CSS或JS文件的压缩输出进行缓存。
若文件未发生变动,则在浏览器请求时,直接传回缓存;若文件发生变动,则首先更新缓存,然后再将缓存传回。
来看具体的实现步骤吧。
首先,确认主机支持mod_rewrite(Apache)或者ISAPI_Rewrite(IIS)。
然后,将以下代码保存为gzip.php,并保存到站点根目录下。
<?php
define('ABSPATH', dirname(__FILE__).'/');
$cache = true;//Gzip压缩开关
$cachedir = 'gzip_cache/';//存放gz文件的目录,使用前创建,并赋予可写权限
$gzip = strstr($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip');
$deflate = strstr($_SERVER['HTTP_ACCEPT_ENCODING'], 'deflate');
$encoding = $gzip ? 'gzip' : ($deflate ? 'deflate' : 'none');
if(!isset()($_SERVER['QUERY_STRING'])) exit();
$key=array_shift(explode()('?', $_SERVER['QUERY_STRING']));
$key=str_replace()('../','',$key);
$filename=ABSPATH.$key;
$symbol='^';
$rel_path=str_replace(ABSPATH,'',dirname($filename));
$namespace=str_replace('/',$symbol,$rel_path);
$cache_filename=ABSPATH.$cachedir.$namespace.$symbol.basename($filename).'.gz';//缓存路径
$type="Content-type: text/html"; //MIME信息
$ext = array_pop(explode('.', $filename));//获取文件扩展名
switch ($ext){//更新MIME信息
case 'css':
$type="Content-type: text/css";
break;
case 'js':
$type="Content-type: text/javascript";
break;
default:
exit();
}
if($cache){
if(file_exists($cache_filename)){//假如存在gz文件
$mtime = filemtime($cache_filename);
$gmt_mtime = gmdate('D, d M Y H:i:s', $mtime) . ' GMT';
if( (isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) &&
array_shift(explode(';', $_SERVER['HTTP_IF_MODIFIED_SINCE'])) == $gmt_mtime)
){
// 若文件无变动,返回304
header ("HTTP/1.1 304 Not Modified");
header("Expires: ");
header("Cache-Control: ");
header("Pragma: ");
header($type);
header("Tips: Cache Not Modified (Gzip)");
header ('Content-Length: 0');
}else{
//读取gz文件输出
$content = file_get_contents($cache_filename);
header("Last-Modified:" . $gmt_mtime);
header("Expires: ");
header("Cache-Control: ");
header("Pragma: ");
header($type);
header("Tips: Normal Respond (Gzip)");
header("Content-Encoding: gzip");
echo $content;
}
}else if(file_exists($filename)){ //没有对应的gz文件
$mtime = mktime();
$gmt_mtime = gmdate('D, d M Y H:i:s', $mtime) . ' GMT';
$content = file_get_contents($filename);
$content = gzencode($content, 9, $gzip ? FORCE_GZIP : FORCE_DEFLATE);//压缩内容
header("Last-Modified:" . $gmt_mtime);
header("Expires: ");
header("Cache-Control: ");
header("Pragma: ");
header($type);
header("Tips: Build Gzip File (Gzip)");
header ("Content-Encoding: " . $encoding);
header ('Content-Length: ' . strlen($content));
echo $content;
if ($fp = fopen($cache_filename, 'w')) {//写入缓存
fwrite($fp, $content);
fclose($fp);
}
}else{
header("HTTP/1.0 404 Not Found");
}
}else{ //关闭Gzip压缩
//by www.
if(file_exists($filename)){
$mtime = filemtime($filename);
$gmt_mtime = gmdate('D, d M Y H:i:s', $mtime) . ' GMT';
if( (isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) &&
array_shift(explode(';', $_SERVER['HTTP_IF_MODIFIED_SINCE'])) == $gmt_mtime)
){
header ("HTTP/1.1 304 Not Modified");
header("Expires: ");
header("Cache-Control: ");
header("Pragma: ");
header($type);
header("Tips: Cache Not Modified");
header ('Content-Length: 0');
}else{
header("Last-Modified:" . $gmt_mtime);
header("Expires: ");
header("Cache-Control: ");
header("Pragma: ");
header($type);
header("Tips: Normal Respond");
$content = readfile($filename);
echo $content;
}
}else{
header("HTTP/1.0 404 Not Found");
}
}
?>
接着,在.htaccess(Apache mod_rewrite)或httpd.ini(IIS ISAPI_Rewrite)中添加以下规则:
最后,进行测试。
访问网站的各个页面,看看gzip_cache文件夹中是否有缓存文件生成。
也可以用百度站长工具,可以看到css/js页面是否压缩。
在windows下,更改php.ini加载路径,只要在WEB服务器配置文件里增加一段代码就可以了。
以apache服务器以例,找到apache配置文件http.conf,查找”ServerRoot “E:/phpserver/apahce”“换行,增加:
PhpIniDir “E:/phpserver/php”
重启apache,查看phpinfo()函数,第7行即可看到加载的路径。
就是这样的简单,呵呵。