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

PHP
php中处理模拟rewrite 效果
粗略计算在线时间,bug:ip相同
function.inc.php超越php
global.php
Php部分常见问题总结
使用PHP数组实现无限分类,不使用数据库,不使用递归.
E路文章系统PHP
一周学会PHP(视频)Http下载
《PHP边学边教》(02.Apache+PHP环境配置——上篇)
Linux下PHP+MYSQL+APACHE配置过程 (摘)
中篇:安装及配置PHP
《PHP边学边教》(02.Apache+PHP环境配置——下篇)
傻瓜化配置PHP环境——Appserv
IIS+PHP+MySQL+Zend配置 (视频教程)
php基础知识:控制结构
php基础知识:函数基础知识
php基础知识:类与对象(1)
php基础知识:类与对象(2) 自动加载对象
php基础知识:类与对象(3) 构造函数和析构函数
php基础知识:类与对象(4) 范围解析操作符(::)

PHP 中的 页面压缩gzip的运用


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 229 ::
收藏到网摘: 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-----------