当前位置:Gxlcms > PHP教程 > PHP实现gzip页面压缩的方法

PHP实现gzip页面压缩的方法

时间:2021-07-01 10:21:17 帮助过:9人阅读

PHP两种方法实现gzip页面压缩,不过这两种方法实现的前提是服务器要支持gzip压缩才行,服务器不支持的话,两种方法都是白搭了。

下面正文开始介绍如何利用 php 实现 gzip 页面压缩功能。

方法一(用php的内置压缩函数):

if(Extension_Loaded('zlib')) Ob_Start('ob_gzhandler');
Header("Content-type: text/html");
?>



scutephp


for($i=0;$i<10000;$i++){
echo 'Hello World!';
}
?>


if(Extension_Loaded('zlib')) Ob_End_Flush();

?>

方法二(自写函数):




scutephp




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;
}
?>

人气教程排行