当前位置: 首页 > 图文教程 > 网络编程 > PHP > 页面压缩gzip的运用

PHP
php生成文件
MySQL中create table语句的基本语法是
NOT NULL 和NULL
最令PHP初学者们头痛的十四个问题
关于mysql 字段的那个点为是定界符
mysql_fetch_assoc和mysql_fetch_row的功能加起来就是mysql_fetch_array
MySQL相关说明
PHP 的 __FILE__ 常量
php防注
在数据量大(超过10万)的情况下
解决中英文字符串长度问题函数
一个更简单的无限级分类菜单代码
mysql 的 like 问题,超强毕杀记!!!
php批量删除数据
解决phpmyadmin中文乱码问题。。。
php中的时间显示
php中的登陆login
php中截取字符串支持utf-8
php5.2.0内存管理改进
php中通过smtp发邮件的类,测试通过

PHP 中的 页面压缩gzip的运用


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 226 ::
收藏到网摘: n/a

http1.1支持gzip编码的数据,所以,通过GZIP来实现页面压缩。在PHP中,我所知道的有两种方法使用GZIP,一种是PHP自带的,不过,要你所用的服务器支持才行!还有一种,呵呵,从网上搜索来的,在这儿就献给大家了。

<?php 
ob_start();//打开输出缓冲 
ob_implicit_flush(0);// 
//*****************************************************************// 
//函数名:canGzip() 
//作用:检查客户浏览器是否支持gzip,x-gzip编码 
//参数: 
//返回值:支持的编码类型"gzip", "x-gzip", 返回false代表不支持 
//*****************************************************************// 
function canGzip() 

//if (headers_sent() || connection_status) 
//return false; 
 
if (strpos('King'.$_SERVER["HTTP_ACCEPT_ENCODING"], 'gzip') !== false) 
return "gzip"; 
 
if (strpos('King'.$_SERVER["HTTP_ACCEPT_ENCODING"], 'x-gzip') !== false) 
return "x-gzip"; 
 
return false; 

 
//*****************************************************************// 
//函数名:doGzipOut($level, $debug) 
//作用:对输出缓冲的数据进行压缩并输出 
//参数:$level代表压缩级别, 0 = 不压缩, 9 = 最大压缩率 
// $debug代表是否输出调试信息, 1 = 输出, 0 = 不输出 
//返回值: 
//*****************************************************************// 
function doGzipOut($level = 1, $debug = 0) 

$ENCODING = canGzip(); 
if ($ENCODING) 

echo "n<!-- Use compress $ENCODING -->n"; 
$contents = ob_get_contents(); 
ob_end_clean(); 
 
if ($debug) 

$s = "<p>Not compress length: ".strlen($contents); 
$s .= "<br/>Compressed length: ".strlen(gzcompress($contents,$level)); 
$contents .= $s; 

 
header("Content-Encoding: $ENCODING"); 
echo "x1fx8bx08x00x00x00x00x00"; //??? 
$size = strlen($contents); 
$crc = crc32($contents); 
$contents = gzcompress($contents, $level); 
$contents = substr($contents, 0, strlen($contents) - 4); //??? 
echo $contents; 
echo pack('V',$crc); 
echo pack('V',$size); 
exit; 

else 

ob_end_flush(); 
exit(); 


?>
 使用方法: ------------Start of file----------
|< ?
| include('gzipOut.php');
|? >
|<HTML>
|... the page ...
|</HTML>
|< ?
| echo "............"
|
| doGzipout();
|? >
-------------End of file-----------