複製程式碼 程式碼如下:
**
* @說明: 檔案快取輸出
* @參數: $cacheache => cache檔案(絕對路徑)
* @參數: $pertime => 快取輸出的間隔時間
* @參數: $sql => sql語句
* @參數: $templatefile => 範本文件名稱(絕對路徑)
* www.php100.com 來自
**/
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';
}
}
}
}
}}
} } } 以上就介紹了photoshop cs5 官方中文破解版下載 php 快取函數程式碼,包含了photoshop cs5 官方中文破解版下載方面的內容,希望對PHP教學有興趣的朋友有所幫助。