php gzip页面压缩方法二个例子

发布时间:2020-01-31编辑:脚本学堂
分享二个php gzip压缩页面的例子,一是使用php内置函数实现页面压缩,二是自己写函数实现压缩内容,需要的朋友参考下。

在php中对页面内容进行压缩,可以减小页面大小,降低内容的网络传输量,在一定程度上加速内容访问。

例1,用php内置压缩函数:
 

复制代码 代码示例:
<?php
if(Extension_Loaded(’zlib’)) Ob_Start(’ob_gzhandler’);
Header("Content-type: text/html");
?>
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>PHP gzip页面压缩方法 - www.plcxue.com</title>
</head>
<body>
<?php
for($i=0;$i<10000;$i++){
echo ’Hello World!’;
}
?>
</body>
</html>
<?PHP
if(Extension_Loaded(’zlib’)) Ob_End_Flush();
?>

例2,自定义函数实现页面压缩。
 

复制代码 代码示例:
<?php ob_start(’ob_gzip’); ?>
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>PHP gzip页面压缩方法 - www.osxue.com</title>
</head>
<body>
</body>
</html>
<?php
ob_end_flush();
//压缩函数
function ob_gzip($content){
if(!headers_sent()&&extension_loaded("zlib")&&strstr($_SERVER["HTTP_ACCEPT_ENCODING"],"gzip")){
$content = gzencode($content,9);
header("Content-Encoding: gzip");
header("Vary: Accept-Encoding");
header("Content-Length: ".strlen($content));
}
return $content;
}
?>