php簡單資料緩衝類

來源:互聯網
上載者:User
公司手機觸屏站 ,由於頁面圖片太多,所以需要做資料緩衝,就隨便寫一個資料緩衝類。

直接貼代碼

/**
*
* 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教程有興趣的朋友有所協助。

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.