首页 > php教程 > php手册 > PHP实现gzip页面压缩方法

PHP实现gzip页面压缩方法

WBOY
发布: 2016-06-13 11:35:28
原创
752 人浏览过

示例一(用php的内置压缩函数):

if(Extension_Loaded(’zlib’)) Ob_Start(’ob_gzhandler’); 
Header("Content-type: text/html"); 
?> 
nbsp;html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
 

 
 
无标题文档 
 
 
for($i=0;$i echo ’Hello World!’; 

?> 
 
 
if(Extension_Loaded(’zlib’)) Ob_End_Flush(); 
?> 


示例二(自写函数):

 

nbsp;html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
 
 
 
无标题文档 
 

 
 
 

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; 

?> 
 
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门推荐
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板