公司手機觸屏站 ,由於頁面圖片太多,所以需要做資料緩衝,就隨便寫一個資料緩衝類。
直接貼代碼
/**
*
* fianl_m@foxmail.com
*緩衝類
*把資料查詢出,並序列化寫入檔案
**/
class Cache{
function __construct($config){
//定義是否開啟緩衝
$this->is_cache=$config['is_cache'];
//定義緩衝目錄
$this->cache_file=$config['cache_file'];
//定義緩衝時間
$this->cache_time=$config['cache_time'];
}
//讀取快取檔案
public function open($name){
$arr=array();
$filename=$this->cache_file.$name;
$status=filemtime($filename)+$this->cache_time>time();//定義緩衝時間
if( file_exists($filename) && $status && $this->is_cache){
$c//讀取快取檔案
$arr=unserialize($content);
return $arr;
}else{
return false;
}
}
//寫入快取檔案
public function write($name,$data=array()){
$filename=$this->cache_file.$name;
$c
file_put_contents($filename, $content);//寫入快取檔案
}
}
?>
其實無非就是,把select的數組 然後序列化 放進文本中 然後讀出來。
使用方法
//定義緩衝是否開啟
require('cache.class.php');
$c />'is_cache'=>1,//是否開啟緩衝
'cache_file'=>'./cache/',//快取檔案夾
'cache_time'=>'60',//緩衝時間
);
$cache=new Cache($config);
//開啟緩衝,傳入快取檔案名字
$row=$cache->open($filename);
//寫入緩衝傳入檔案名稱字 和資料(數組)
$cache->write($filename,$data);
ps:有不懂的 可以給我留言 非囍勿噴,大神繞過,菜鳥學習!
以上就介紹了php簡單資料緩衝類,包括了方面的內容,希望對PHP教程有興趣的朋友有所協助。