php 緩存工具類 實現網頁緩存

php 緩存工具類 實現網頁緩存 php

php程序在抵抗大流量訪問的時候動態網站每每都是難以招架,因此要引入緩存機制,通常狀況下有兩種類型緩存瀏覽器

1、文件緩存緩存

2、數據查詢結果緩存,使用內存來實現高速緩存函數

本例主要使用文件緩存。工具

主要原理使用緩存函數來存儲網頁顯示結果,若是在規定時間裏再次調用則能夠加載緩存文件。網站

 

工具類代碼:ui

// 文件緩存類
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 '<div style="color:red;">' . $str . '</div>';
	}
}

  

 

使用方法:this

使用方法以下:url

一部分代碼放在要被緩存邏輯代碼前面:blog

$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 (); // 首次運行或緩存過時,生成緩存

  

原文地址:http://sijienet.com/bbs/?leibie=showinfo&id=50

相關文章
相關標籤/搜索