php緩衝類
cache.inc.php:
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: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); //首次運行或緩衝到期,產生緩衝*/?>