本文給大家分享的是php實現網頁緩衝的工具類的代碼及使用方法,非常的實用,有需要的小夥伴可以參考下。
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 ()) { // 以下兩種方式,哪種方式好????? require_once ($this->cacheid); echo "<!--緩衝-->"; // 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 '<p style="color:red;">' . $str . '</p>'; }}
使用方法:
使用方法如下:
一部分代碼放在要被緩衝邏輯代碼前面:
$cachedir = './Cache/'; // 設定緩衝目錄 $cache = new Cache ( $cachedir, 33 ); // 省略參數即採用預設設定, $cache = new Cache($cachedir); if (@$_GET ['cacheact'] != 'rewrite' || @$_GET ['clearCache'] == 'ok') // 此處為一技巧,通過xx.Php?cacheact=rewrite更新緩衝,以此類推,還可以設定一些其它操作 $cache->load (); // 裝載緩衝,緩衝有效則不執行以下頁面代碼 // 頁面代碼開始
一部分放在被緩衝邏輯代碼後面:
// 頁面代碼結束 $cache->write (); // 首次運行或緩衝到期,產生緩衝
總結:以上就是本篇文的全部內容,希望能對大家的學習有所協助。
相關推薦:
PHP抽獎演算法程式設計
使用php問卷調查結果統計
PHP變數、數組、Regex及模板的應用