複製程式碼 程式碼如下:
define('CACHE_ROOT', dirname(__FILE__).'/cache' ); //快取存放目錄
define('CACHE_TIME', 1800);//快取時間單位秒
define('CACHE_FIX','.html');
$CacheName=md5($_SERVERVER ['REQUEST_URI']).CACHE_FIX; //快取檔案名稱
$CacheDir=CACHE_ROOT.'/'.substr($CacheName,0,1);//快取檔案存放目錄
$CacheUrl=$CacheDir .'/'.$CacheName;//快取檔案的完整路徑
//GET方式請求才緩存,POST之後一般都希望看到最新的結果
if($_SERVER['REQUEST_METHOD']== 'GET'){
//如果快取檔案存在,並且沒有過期,就把它讀出來。
if(file_exists($CacheName) && time()-filemtime($CacheName)
fpassthru($fp);
fclose($fp);
exit;
}
//判斷資料夾是否存在,不存在則建立
elseif(!file_exists($CacheDir)){
if( !file_exists(CACHE_ROOT)){
mkdir(CACHE_ROOT,0777);
chmod(CACHE_ROOT,0777);
}
mkdir($CacheDir,077)
//回呼函數,當程式結束時自動呼叫此函數
function AutoCache($contents){
global $CacheUrl;
$fp=fopen($CacheUrl ,'wb');
fwrite($fp,$contents);
fclose($fp);
chmod($CacheUrl,0777);
//產生新快取的同時,自動刪除所有的舊緩存,以節省空間,可忽略。
//DelOldCache();
return $contents;
}
function DelOldCache(){
chdir(CACHE_ROOT);
foreach (glob("*//* ) as $file){
if(time()-filemtime($file)>CACHE_TIME)unlink($file);
}
}
//回呼函數auto_cache
ob_start( 'AutoCache');
}else{
//不是GET的請求就刪除快取檔案。
if(file_exists($CacheUrl))unlink($CacheUrl);
}
?>