本文实例讲述了基于thinkphp3.2实现微信接入及查询token值的方法。分享给大家供大家参考,具体如下:
1.在con.fig文件里面配置token,appid,appsecret值
2.控制器weixincontroller代码:
<?php
/**
* 微信父类控制器
* @author songle
*
*/
namespace weixincontroller;
use thinkcontroller;
class weixincontroller extends controller {
private $last_time=null;
private $appid=null;
private $appsecret=null;
function __construct(){
parent::__construct();
$token=c('token');
$this->appid=c('appid');
$this->appsecret=c('appsecret');
//获取微信服务器get请求的4个参数
$signature = i('signature');
$timestamp = i('timestamp');
$nonce = i('nonce');
$echostr = i('echostr');
if (! empty ( $echostr) && ! empty ( $signature ) && ! empty ($nonce )) {
//定义一个数组,存储其中3个参数,分别是timestamp,nonce和token
$temparr = array($nonce,$timestamp,$token);
//进行排序
sort($temparr,sort_string);
//将数组转换成字符串
$tmpstr = implode($temparr);
//进行sha1加密算法
$tmpstr = sha1($tmpstr);
//判断请求是否来自微信服务器,对比$tmpstr和$signature
if($tmpstr == $signature)
{
echo $echostr;
}
exit();
}
}
/**
* 获取tooken值
*/
public function gettooken(){
$this->last_time = 1448012924;
$access_token = "填写上一次的token值"; //需要替换成自己的
if(time() > ($this->last_time + 7200))
{
//get请求的地址
$url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={$this->appid}&secret={$this->appsecret}";
$access_token_arr = $this->https_request($url);
$this->last_time = time();
return $access_token_arr['access_token'];
}
return $access_token;
}
//https请求(支持get和post)
public function https_request($url,$data = null)
{
$ch = curl_init();
curl_setopt($ch,curlopt_url,$url);
curl_setopt($ch,curlopt_returntransfer,1);
if(!empty($data))
{
curl_setopt($ch,curlopt_post,1); //模拟post
curl_setopt($ch,curlopt_postfields,$data); //post内容
}
$outopt = curl_exec($ch);
curl_close($ch);
$outopt = json_decode($outopt,true);
return $outopt;
}
}
更多关于thinkphp相关内容感兴趣的读者可查看本站专题:《php微信开发技巧汇总》、《thinkphp入门教程》、《thinkphp模板操作技巧总结》、《thinkphp常用方法总结》、《codeigniter入门教程》、《ci(codeigniter)框架进阶教程》、《zend framework框架入门教程》及《php模板技术总结》。
希望本文所述对大家基于thinkphp框架的php程序设计有所帮助。
【说明】:本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:)!