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

PHP简单实用的缓存函数

时间:2015-01-07 18:25:46      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

/**
* @说明: 文件缓存输出
* @参数: $cachefile => cache文件(绝对路径)
* @参数: $pertime => 缓存输出的间隔时间
* @参数: $sql => sql语句
* @参数: $templatefile => 模板文件名称(绝对路径)
**/
function __cache($cachefile,$pertime,$sql,$templatefile) {
global $db;
if(time() - @filemtime($cachefile) >= $pertime) {
  $query = $db->query($sql);
   while($r=$db->fetch($query)) {
   $cachelist[] = $r;
   }  
   include $templatefile.‘.php‘;
  $cacheserialize = serialize($cachelist);
  file_put_contents($cachefile,$cacheserialize);
}else{
  $cachelist = unserialize(file_get_contents($cachefile));
   include $templatefile.‘.php‘;
}
}

 

PHP简单实用的缓存函数

标签:

原文地址:http://www.cnblogs.com/itcx/p/4209015.html

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