欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

简单实用的php缓存函数_PHP教程

程序员文章站 2022-05-10 20:56:14
...
/**
* @说明: 文件缓存输出
* @参数: $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;
}
}

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/508228.htmlTechArticle/** * @说明: 文件缓存输出 * @参数: $cachefile = cache文件(绝对路径) * @参数: $pertime = 缓存输出的间隔时间 * @参数: $sql = sql语句 * @参数: $templa...