程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> 簡單實用的php緩存函數

簡單實用的php緩存函數

編輯:PHP綜合

/**

* @說明: 文件緩存輸出

* @參數: $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';
}
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved