亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

php 緩存函數(shù)代碼

 更新時(shí)間:2008年08月27日 12:55:37   作者:  
簡(jiǎn)單實(shí)用的緩存函數(shù)

復(fù)制代碼 代碼如下:

**
* @說(shuō)明: 文件緩存輸出
* @參數(shù): $cachefile => cache文件(絕對(duì)路徑)
* @參數(shù): $pertime => 緩存輸出的間隔時(shí)間
* @參數(shù): $sql => sql語(yǔ)句
* @參數(shù): $templatefile => 模板文件名稱(絕對(duì)路徑)
* www.php100.com 來(lái)自
**/
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';
}
}

相關(guān)文章

最新評(píng)論