无标题文档 for($i=0;$i echo 'Hello"/>
PHP头条
热点:

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


示例一(用php的内置压缩函数):
代码如下:
if(Extension_Loaded('zlib')) Ob_Start('ob_gzhandler');
Header("Content-type: text/html");
?>




无标题文档


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


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

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





无标题文档




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

www.phpzy.comtrue/phpyy/24145.htmlTechArticle探讨如何在PHP开启gzip页面压缩实例 示例一(用php的内置压缩函数): 代码如下: if(Extension_Loaded('zlib')) Ob_Start('ob_gzhandler'); Header("Content-type: text/html"); ?> 无标题文档 for($i=0;$i echo 'Hello...

相关文章

PHP之友评论

今天推荐