PHP取微信access_token并全局存储与更新

Posted 大漠孤魂

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP取微信access_token并全局存储与更新相关的知识,希望对你有一定的参考价值。

来源:http://www.zcphp.com/html/weixinkaifa-show-20.html

官方的说明:

access_token是公众号的全局唯一票据,公众号调用各接口时都需使用access_token。

开发时需要进行妥善保存。

access_token的有效期目前为2个小时,需定时刷新,重复获取将导致上次获取的access_token失效。

 

众所周知,在微信开发中access_token是经常用的。但是access_token的请求次数是有限制的,所以不能每次都重新请求,只有将它缓存到本地了。

 

 function accessToken() {
    $tokenFile = "./access_token.txt";//缓存文件名
    $data = json_decode(file_get_contents($tokenFile));
    if ($data->expire_time < time() or !$data->expire_time) {
    $appid = "你的appid";
    $appsecret = "你的appsecret";
    $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=$appid&secret=$appsecret";
      $res = getJson($url);
      $access_token = $res[‘access_token‘];
      if($access_token) {
        $data[‘expire_time‘] = time() + 7000;
        $data[‘access_token‘] = $access_token;
        $fp = fopen($tokenFile, "w");
        fwrite($fp, json_encode($data));
        fclose($fp);
      }
    } else {
      $access_token = $data->access_token;
    }
     return $access_token;
  }
   
 //取得微信返回的JSON数据
 function getJson($url){
  $ch = curl_init();
  curl_setopt($ch, CURLOPT_URL, $url);
  curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); 
  curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); 
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  $output = curl_exec($ch);
  curl_close($ch);
  return json_decode($output, true);
}

  

 

以上是关于PHP取微信access_token并全局存储与更新的主要内容,如果未能解决你的问题,请参考以下文章

PHP 定时任务获取微信 access_token

(实用篇)PHP定时任务获取微信access_token

微信access_token全局缓存,处理过期

微信公众号获取acess_token并存储(php)

php获取微信基础接口凭证Access_token

微信access_token存储与更新