- cache.inc.php:
- class Cache {
- /**
- * $dir : 快取檔案存放目錄
- * $lifetime : 快取檔案有效期間,單位為秒
- * $cacheid : 快取檔案路徑,包含檔案名稱
- * $ext : 快取檔案副檔名(可以不用),這裡使用是為了查看檔案方便
- */
- private $dir;
- private $lifetime;
- private $cacheid;
- private $ext;
- /**
- * 解構函式,檢查緩衝目錄是否有效,預設賦值
- */
- 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 , 以瀏覽器緩衝的方式取得頁面內容
- * $mode == 1 , 以直接賦值(通過$content參數接收)的方式取得頁面內容
- * $mode == 2 , 以本地讀取(fopen ile_get_contents)的方式取得頁面內容(似乎這種方式沒什麼必要)
- */
- 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('寫入緩衝失敗!請檢查目錄許可權!');
- }
- }
- /**
- * 載入緩衝
- * exit() 載入緩衝後終止原頁面程式的執行,快取無效判定則運行原頁面程式產生緩衝
- * ob_start() 開啟瀏覽器緩衝用於在頁面結尾處取得頁面內容
- */
- 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('清除快取檔案失敗!請檢查目錄許可權!');
- }
- }
- /**
- * 取得快取檔案路徑
- */
- private function getcacheid() {
- return $this->dir.md5($this->geturl()).$this->ext;
- }
- /**
- * 檢查目錄是否存在或是否可建立
- */
- private function dir_isvalid($dir) {
- if (is_dir($dir)) return true;
- try {
- mkdir($dir,0777);
- }
- catch (Exception $e) {
- $this->error('所設定緩衝目錄不存在並且建立失敗!請檢查目錄許可權!');
- return false;
- }
- return true;
- }
- /**
- * 取得當前頁面完整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;
- }
- /**
- * 輸出錯誤資訊
- */
- private function error($str) {
- echo ''.$str.'';
- }
- }
- ?>
複製代碼
- demo.php:
- /*
- * 可自由轉載使用,請保留著作權資訊,謝謝使用!
- * Class Name : Cache (For Php5)
- * Version : 1.0
- * Description : 動態緩衝類,用於控制頁面自動產生緩衝、調用緩衝、更新緩衝、刪除緩衝.
- * Author : jiangjun8528@163.com,Junin
- * Author Page : http://blog.csdn.Net/sdts/
- * Last Modify : 2007-8-22
- * Remark :
- 1.此版本為Php5版本,本人暫沒有寫Php4的版本,如需要請自行參考修改(比較容易啦,不要那麼懶嘛,呵呵!).
- 2.此版本為utf-8編碼,如果網站採用其它編碼請自行轉換,Windows系統用記事本開啟另存新檔,選擇相應編碼即可(一般ANSI),Linux下請使用相應編輯軟體或iconv命令列.
- 3.拷貝粘貼的就不用管上面第2條了.
- * 關於緩衝的一點感想:
- * 動態緩衝和靜態緩衝的根本差別在於其是自動的,使用者訪問頁面過程就是產生緩衝、瀏覽緩衝、更新緩衝的過程,無需人工操作幹預.
- * 靜態緩衝指的就是產生靜態頁面,相關操作一般是在網站後台完成,需人工操作(也就是手動產生).
- */
- /*
- * 使用方法舉例
- ------------------------------------Demo1-------------------------------------------
- require_once('cache.inc.php');
- $cachedir = './Cache/'; //設定緩衝目錄
- $cache = new Cache($cachedir,10); //省略參數即採用預設設定, $cache = new Cache($cachedir);
- if ($_GET['cacheact'] != 'rewrite') //此處為一技巧,通過xx.Php?cacheact=rewrite更新緩衝,以此類推,還可以設定一些其它操作
- $cache->load(); //裝載緩衝,緩衝有效則不執行以下頁面代碼
- //頁面代碼開始
- echo date('H:i:s jS F');
- //頁面代碼結束
- $cache->write(); //首次運行或緩衝到期,產生緩衝
- ------------------------------------Demo2-------------------------------------------
- require_once('cache.inc.php');
- $cachedir = './Cache/'; //設定緩衝目錄
- $cache = new Cache($cachedir,10); //省略參數即採用預設設定, $cache = new Cache($cachedir);
- if ($_GET['cacheact'] != 'rewrite') //此處為一技巧,通過xx.Php?cacheact=rewrite更新緩衝,以此類推,還可以設定一些其它操作
- $cache->load(); //裝載緩衝,緩衝有效則不執行以下頁面代碼
- //頁面代碼開始
- $content = date('H:i:s jS F');
- echo $content;
- //頁面代碼結束
- $cache->write(1,$content); //首次運行或緩衝到期,產生緩衝
- ------------------------------------Demo3-------------------------------------------
- require_once('cache.inc.php');
- define('CACHEENABLE',true);
- if (CACHEENABLE) {
- $cachedir = './Cache/'; //設定緩衝目錄
- $cache = new Cache($cachedir,10); //省略參數即採用預設設定, $cache = new Cache($cachedir);
- if ($_GET['cacheact'] != 'rewrite') //此處為一技巧,通過xx.Php?cacheact=rewrite更新緩衝,以此類推,還可以設定一些其它操作
- $cache->load(); //裝載緩衝,緩衝有效則不執行以下頁面代碼
- }
- //頁面代碼開始
- $content = date('H:i:s jS F');
- echo $content;
- //頁面代碼結束
- if (CACHEENABLE)
- $cache->write(1,$content); //首次運行或緩衝到期,產生緩衝
- */
- ?>
複製代碼
|