码迷,mamicode.com
首页 > Web开发 > 详细

php使用ob缓存来实现动态页面静态化

时间:2017-09-14 21:40:52      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:操作方法   filename   判断   end   die   classname   缓存   comm   fclose   

例子:

<?php
include_once ‘common/common.php‘;//数据库操作方法

$fileName = ‘test.html‘;
$expr = 10;//缓存时间
$time_start = microtime();
if( file_exists($fileName)){//判断文件是否存在
$fileCreateTime = filectime($fileName);
if ($fileCreateTime+$expr > time()) {//判断缓存文件是否过期
/*没有过期,输出缓存文件*/
echo file_get_contents($fileName);
$time_end = microtime();
echo ‘<br>查询静态页面花费的时间:‘;
echo $time_end - $time_start;
die();
}else{
/*删除过期文件*/
unlink($fileName);
}
}
ob_start();
$sql = "SELECT classname FROM category WHERE cid > 0";
$res = mySelect($conn,$sql);
foreach ($res as $k => $v){
echo "<a href=‘http://www.baidu.com‘>".$v[‘classname‘]."</a>"."<br>";
}
echo date(‘Y-m-d H:i:s‘,time());
$time_end = microtime();
echo ‘<br>查询数据库花费的时间:‘;
echo $time_end - $time_start;
/*将页面缓存起来*/
$content = ob_get_contents();
$fp = fopen(‘test.html‘,‘w‘);
fwrite($fp,$content);
fclose($fp);
ob_end_clean();

从输出时间差发现,加载静态页面速度远远大于动态页面

参考:http://www.jb51.net/article/74342.htm
  http://www.jb51.net/article/47951.htm

php使用ob缓存来实现动态页面静态化

标签:操作方法   filename   判断   end   die   classname   缓存   comm   fclose   

原文地址:http://www.cnblogs.com/yexiaocangji/p/7522514.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!