当前位置: 移动技术网 > IT编程>开发语言>PHP > 探讨如何在PHP开启gzip页面压缩实例

探讨如何在PHP开启gzip页面压缩实例

2019年04月09日  | 移动技术网IT编程  | 我要评论
示例一(用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>无标题文档</title>
</head>
<body>
<?php
for($i=0;$i<10000;$i++){
echo 'hello world!';
}
?>
</body>
</html>
<?php
if(extension_loaded('zlib')) ob_end_flush();
?>

示例二(自写函数):
复制代码 代码如下:

<?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>无标题文档</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;
}
?>

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网