公司手機觸控站 ,由於頁面圖片太多,所以需要做資料緩存,就隨便寫一個資料快取類別。
直接貼程式碼
/**
*
* 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 $
return $
$arr=unserialize($content);
return $
return $
$arr=unserialize($content); arr;
}else{
return false;
}
}
//寫入快取檔案
$filename=$this->cache_file.$name;
$c file_put_contents($filename, $content);//寫入快取檔案
}
}
?>
其實無非就是,然後將文字放入文字中再讀出來。
使用方法
//定義快取是否開啟
require('cache.class.php');
'cache_file'=>'./ cache/',//快取資料夾
'cache_time'=>'60',//快取時間);
$cache=new Cache($config);//開啟緩存,傳入快取檔案名稱$row=$cache->open($filename);//寫入快取傳入檔案名稱 與資料(陣列)$cache->write($filename,$data);ps:有不懂的可以給我留言 非囍勿噴,大神繞過,菜鳥學習! 🎜 🎜 以上就介紹了php簡單資料快取類,包含了方面的內容,希望對PHP教學有興趣的朋友有幫助。 🎜 🎜 🎜