这篇文章主要为大家详细介绍了php 使用zlib压缩输出内容,提高网页打开速度,具有一定的参考价值,可以用来参考一下。
对php使用zlib压缩输出内容以提高网页打开速度感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
/**
* php使用zlib压缩输出内容以提高网页打开速度
*
* @param
* @arrange 512-笔记网: www.q1010.com
**/
<?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=utf-8" />
<title>如何使用zlib</title>
</head>
<body>
<?php
for($i=0;$i<100;$i++){
echo 'Hello World!';
}
?>
</body>
</html>
<?PHP
if(extension_loaded('zlib')) ob_end_flush();
?>
/*** 来自四海网(www.q1010.com) ***/
本文来自:http://www.q1010.com/173/1393-0.html
注:关于php 使用zlib压缩输出内容,提高网页打开速度的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:zlib
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。