首頁  >  文章  >  微信小程式  >  PHP微信開發用Cache 解決資料緩存

PHP微信開發用Cache 解決資料緩存

高洛峰
高洛峰原創
2017-03-28 14:03:502435瀏覽

本文主要介紹,解決PHP微信開發時資料快取的問題,這裡用Cache 類別舉例說明,具有參考價值,感興趣的小夥伴可以參考下方

用php進行微信開發時,碰到access_token長久保存的問題,以前都是用框架裡的Cache直接set、get一下就完了。現在沒框架可用了,只好自己動手寫一個cache暫時使用。

這個Cache類別用來快取一些具有時效性的數據,例如微信基礎介面的access_token、網頁Auth驗證的access_token等

#下面的程式碼使用本機檔案進行資料的緩存,

//测试
 $cache = new Cache();
 $cache->dir = "../cc/";
 //$cache->setCache("zhang", "zhangsan", 100);
 echo $cache->getCache("zhang");
 //$cache->removeCache("zhang");
 
 $cache->setCache("liu", "liuqi", 100);
 echo $cache->getCache("liu");

 class Cache{
 public $cacheFile = "cache.json"; //文件
 public $dir = "./cach2/"; //目录

 //缓存
 public function setCache($name, $val, $expires_time){
 $file = $this->hasFile();
 //字符串转数组
 $str = file_get_contents($file);
 $arr = json_decode($str, true);
 
 //值为空,则移除该缓存
 if(empty($val)){
 unset($arr[$name]);
 }else{
 $arr[$name] = array("value"=>$val, "expires_time"=>$expires_time, "add_time"=>time());
 } 
 //数组转字符串
 $str = json_encode($arr);
 file_put_contents($file, $str);
 }
 public function getCache($name){
 $file = $this->hasFile();
 
 //字符串转数组
 $allArr = json_decode($str, true);
 $arr = $allArr[$name];

 if(!$arr || time() > ($arr["expires_time"] + $arr["add_time"])){
 $this->removeCache($name); //过期移除
 return false;
 }
 return $arr["value"];
 }
 public function removeCache($name){
 $this->setCache($name, '', 0);
 }
 
 private function hasFile(){
 //如果不存在缓存文件,则创建一个
 if(!file_exists($this->dir)){
 mkdir($this->dir);
 }
 if(!file_exists($this->dir . $this->cacheFile)){
 touch($this->dir . $this->cacheFile);
 }
 return $this->dir . $this->cacheFile;
 }
}

上面的Cache類別共有set、get、remove三種操作。另外還可以自訂快取檔案的儲存路徑,只要設定Cache的dir屬性就可以了。

          以上是PHP 微信開發時資料快取的方法,希望對大家的學習有所幫助.

以上是PHP微信開發用Cache 解決資料緩存的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn