緩存在實(shí)際使用當(dāng)中應(yīng)用很廣泛,可以減輕對(duì)服務(wù)器數(shù)據(jù)庫的訪問,提高運(yùn)行速度。目前很多CMS內(nèi)容管理系統(tǒng)中頻繁使用緩存機(jī)制來提高系統(tǒng)運(yùn)行的效率。下面是一個(gè)寫得不錯(cuò)的緩存類,可以參考下緩存的機(jī)制與寫法。
?php
class Cache {
/**
* $dir : 緩存文件存放目錄
* $lifetime : 緩存文件有效期,單位為秒
* $cacheid : 緩存文件路徑,包含文件名
* $ext : 緩存文件擴(kuò)展名(可以不用),這里使用是為了查看文件方便
*/
private $dir;
private $lifetime;
private $cacheid;
private $ext;
/**
* 析構(gòu)函數(shù),檢查緩存目錄是否有效,默認(rèn)賦值
*/
function __construct($dir='',$lifetime=1800) {
if ($this--->dir_isvalid($dir)) {
$this->dir = $dir;
$this->lifetime = $lifetime;
$this->ext = '.Php';
$this->cacheid = $this->getcacheid();
}
}
/**
* 檢查緩存是否有效
*/
private function isvalid() {
if (!file_exists($this->cacheid)) return false;
if (!(@$mtime = filemtime($this->cacheid))) return false;
if (mktime() - $mtime > $this->lifetime) return false;
return true;
}
/**
* 寫入緩存
* $mode == 0 , 以瀏覽器緩存的方式取得頁面內(nèi)容
* $mode == 1 , 以直接賦值(通過$content參數(shù)接收)的方式取得頁面內(nèi)容
* $mode == 2 , 以本地讀取(fopen ile_get_contents)的方式取得頁面內(nèi)容(似乎這種方式?jīng)]什么必要)
*/
public function write($mode=0,$content='') {
switch ($mode) {
case 0:
$content = ob_get_contents();
break;
default:
break;
}
ob_end_flush();
try {
file_put_contents($this->cacheid,$content);
}
catch (Exception $e) {
$this->error('寫入緩存失敗!請(qǐng)檢查目錄權(quán)限!');
}
}
/**
* 加載緩存
* exit() 載入緩存后終止原頁面程序的執(zhí)行,緩存無效則運(yùn)行原頁面程序生成緩存
* ob_start() 開啟瀏覽器緩存用于在頁面結(jié)尾處取得頁面內(nèi)容
*/
public function load() {
if ($this->isvalid()) {
echo "This is Cache. ";
//以下兩種方式,哪種方式好?????
require_once($this->cacheid);
//echo file_get_contents($this->cacheid);
exit();
}
else {
ob_start();
}
}
/**
* 清除緩存
*/
public function clean() {
try {
unlink($this->cacheid);
}
catch (Exception $e) {
$this->error('清除緩存文件失敗!請(qǐng)檢查目錄權(quán)限!');
}
}
/**
* 取得緩存文件路徑
*/
private function getcacheid() {
return $this->dir.md5($this->geturl()).$this->ext;
}
/**
* 檢查目錄是否存在或是否可創(chuàng)建
*/
private function dir_isvalid($dir) {
if (is_dir($dir)) return true;
try {
mkdir($dir,0777);
}
catch (Exception $e) {
$this->error('所設(shè)定緩存目錄不存在并且創(chuàng)建失敗!請(qǐng)檢查目錄權(quán)限!');
return false;
}
return true;
}
/**
* 取得當(dāng)前頁面完整url
*/
private function geturl() {
$url = '';
if (isset($_SERVER['REQUEST_URI'])) {
$url = $_SERVER['REQUEST_URI'];
}
else {
$url = $_SERVER['Php_SELF'];
$url .= empty($_SERVER['QUERY_STRING'])?'':'?'.$_SERVER['QUERY_STRING'];
}
return $url;
}
/**
* 輸出錯(cuò)誤信息
*/
private function error($str) {
echo $str;
}
}
?>
php
/*
* 使用方法舉例
*/
------------------------------------Demo1-------------------------------------------
require_once('cache.inc.php');
$cachedir = './Cache/'; //設(shè)定緩存目錄
$cache = new Cache($cachedir,10); //省略參數(shù)即采用缺省設(shè)置, $cache = new Cache($cachedir);
if ($_GET['cacheact'] != 'rewrite') //此處為一技巧,通過xx.Php?cacheact=rewrite更新緩存,以此類推,還可以設(shè)定一些其它操作
$cache->load(); //裝載緩存,緩存有效則不執(zhí)行以下頁面代碼
//頁面代碼開始
echo date('H:i:s jS F');
//頁面代碼結(jié)束
$cache->write(); //首次運(yùn)行或緩存過期,生成緩存
------------------------------------Demo2-------------------------------------------
require_once('cache.inc.php');
$cachedir = './Cache/'; //設(shè)定緩存目錄
$cache = new Cache($cachedir,10); //省略參數(shù)即采用缺省設(shè)置, $cache = new Cache($cachedir);
if ($_GET['cacheact'] != 'rewrite') //此處為一技巧,通過xx.Php?cacheact=rewrite更新緩存,以此類推,還可以設(shè)定一些其它操作
$cache->load(); //裝載緩存,緩存有效則不執(zhí)行以下頁面代碼
//頁面代碼開始
$content = date('H:i:s jS F');
echo $content;
//頁面代碼結(jié)束
$cache->write(1,$content); //首次運(yùn)行或緩存過期,生成緩存
------------------------------------Demo3-------------------------------------------
require_once('cache.inc.php');
define('CACHEENABLE',true);
if (CACHEENABLE) {
$cachedir = './Cache/'; //設(shè)定緩存目錄
$cache = new Cache($cachedir,10); //省略參數(shù)即采用缺省設(shè)置, $cache = new Cache($cachedir);
if ($_GET['cacheact'] != 'rewrite') //此處為一技巧,通過xx.Php?cacheact=rewrite更新緩存,以此類推,還可以設(shè)定一些其它操作
$cache->load(); //裝載緩存,緩存有效則不執(zhí)行以下頁面代碼
}
//頁面代碼開始
$content = date('H:i:s jS F');
echo $content;
//頁面代碼結(jié)束
if (CACHEENABLE)
$cache->write(1,$content); //首次運(yùn)行或緩存過期,生成緩存
?>
以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對(duì)腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請(qǐng)查看下面相關(guān)鏈接