php签名getsha1,实现:签名校验与获
取access_token。。。
模型(model):Weixin.php
namespace app\index\model;
use think\Model;
use think\facade\Cache;
use think\Db;
class Weixin extends Model{
// 签名校验
public function valid(){
$signature = input('get.signature');
$timestamp = input('get.timestamp');
$nonce = input('');
$token = config('app.weixintoken'); //从app.php配置⽂件中拿到数据
$tmpArr = array($timestamp,$nonce,$token);  //⽤$tmpArr变量来接收数组中的数据
sort($tmpArr, SORT_STRING);
$str = implode($tmpArr);    //将$tmpArr数组中的数据拼接来⼀个字符串
if(sha1($str) != $signature){  //判断时将$str进⾏sha1加密,$str不等于$signature时执⾏false,否则返回true
return false;  //不通过返回false
}
return true;    //通过返回true
}
//获取access_token
public function access_token($iscache = true){
$key = 'access_token';
if(!$iscache){
Cache::rm($key);
}
$data = Cache::get($key); //将拿到的数据存储到$data变量中
if($data && $iscache){    //如果 $data 并且 $iscache有值 将返回当前值
return $data;
}
$appid = config('app.appid'); //在app.php配置⽂件中设置值
$appsecret = config('app.appsecret');  //在app.php配置⽂件中设置值
//URL中必须配置⾥的appid 和 appsecret
$url = 'api.weixin.qq/cgi-bin/token?grant_type=client_credential&appid='.$appid.'&secret='.$appsecret; $res = http_get($url);
$res = json_decode($res,true);
if(!isset($res['access_token'])){  //检测$res中没有值则返回false,如果有值拿到下⾯语句中缓存
return false;
}
Cache::set($key,$res['access_token'],($res['expires_in']-500));    //缓存accseet_token,
return $res['access_token'];
}
}
添加配置向(config):app.php
//token
'weixintoken'            => 'p医院医院*',
//开发者ID:APPID
'appid'                  => 'w医院医院医院医院医院c',
//开发者密码
'appsecret'              => 'e8医院医院*6医院医院医院医院*c医院5医院医院医院97医院*',
应⽤公共⽂件(common.php)
function http_Post($url,$data){
$curl = curl_init();
curl_setopt($curl,CURLOPT_URL,trim($url));
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);curl命令发送post请求带参数
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
//启⽤时会发送⼀个常规的POST请求,为1或者为true
if(!empty($data)){
$data = is_array($data)?json_encode($data):$data;
curl_setopt($curl,CURLOPT_POST,1);
curl_setopt($curl,CURLOPT_POSTFIELDS,$data);//需要要传送的内容
}
curl_setopt($curl,CURLOPT_RETURNTRANSFER,1);
$return_str = curl_exec($curl);
curl_close($curl);
return $return_str;
}
function http_Get($url){
$curl = curl_init();
curl_setopt($curl,CURLOPT_URL,trim($url));
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($curl,CURLOPT_HEADER,0);
curl_setopt($curl,CURLOPT_CUSTOMREQUEST,'GET');//需要要传送的内容curl_setopt($curl,CURLOPT_RETURNTRANSFER,1);
$return_str = curl_exec($curl);
curl_close($curl);
return $return_str;
}
运⾏实例 »

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。