この記事では、PHPWeChat開発中のデータキャッシュの問題を解決する方法を主に紹介します。ここではCacheクラスが例として使用されており、興味のある友人は参考にしてください
。 WeChatを開発するには、access_tokenの長期保存について、以前はframework内のCacheを利用して直接setを取得していました。現在は利用可能なフレームワークがないため、一時的に使用するために自分でキャッシュを作成する必要があります。
この Cache クラスは、WeChat 基本 インターフェイスの access_token、Web 認証検証の 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; } }
以上がPHP WeChat 開発では Cache を使用してデータ キャッシュを解決しますの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。