微信小程序&PHP 生成access_token 存入缓存 获取规则

注意:每个小程序都会对应后台的一系列接口。access_token一天2000次,每个有效期为2小时。所以可以保存到缓存中,每隔一段时间去获取一次。

把appid和secret放在全局配置文件中,方便调用

config.php

获取access_token,后台接口

$access_token=M::Get('q******n_'.$appid);
if(!$access_token){
        $url_access_token = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid='.$appid.'&secret='.$secret;
        $json_access_token = sendCmd($url_access_token,array());
        //access_token加缓存
        $arr_access_token = json_decode($json_access_token,true);
        $access_token = $arr_access_token['access_token'];
        M::Set('q*********en_'.$appid,$access_token,3600);
}

 

 

 

你可能感兴趣的:(微信,微信小程序,php)