php版微信公众平台红包api,php公众红包api重写了一下php下面的微信api接口,
微信红包支持,jsapi的动态参数接口支持
http://git.oschina.net/youkuiyuan/yky_test/blob/master/class/wxapi.class.php
微信api类 - 增加红包支持
= 1 ){ curl_setopt($ch, curlopt_httpheader, $aheader); } curl_setopt($ch,curlopt_post, 1); curl_setopt($ch,curlopt_postfields,$vars); $data = curl_exec($ch); if($data){ curl_close($ch); return $data; } else { $error = curl_errno($ch); echo call faild, errorcode:$error\n; curl_close($ch); return false; } } /**************************************************** * 微信获取accesstoken 返回指定微信公众号的at信息 ****************************************************/ public function wxaccesstoken($appid = null , $appsecret = null){ $appid = is_null($appid) ? self::appid : $appid; $appsecret = is_null($appsecret) ? self::appsecret : $appsecret; //echo $appid,$appsecret; $url = https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=.$appid.&secret=.$appsecret; $result = $this->wxhttpsrequest($url); //print_r($result); $jsoninfo = json_decode($result, true); $access_token = $jsoninfo[access_token]; return $access_token; } /**************************************************** * 微信通过openid获取用户信息,返回数组 ****************************************************/ public function wxgetuser($openid){ $wxaccesstoken = $this->wxaccesstoken(); $url = https://api.weixin.qq.com/cgi-bin/user/info?access_token=.$wxaccesstoken.&openid=.$openid.&lang=zh_cn; $result = $this->wxhttpsrequest($url); $jsoninfo = json_decode($result, true); return $jsoninfo; } /**************************************************** * 微信通过指定模板信息发送给指定用户,发送完成后返回指定json数据 ****************************************************/ public function wxsendtemplate($jsondata){ $wxaccesstoken = $this->wxaccesstoken(); $url = https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=.$wxaccesstoken; $result = $this->wxhttpsrequest($url,$jsondata); return $result; } /**************************************************** * 发送自定义的模板消息 ****************************************************/ public function wxsetsend($touser, $template_id, $url, $data, $topcolor = '#7b68ee'){ $template = array( 'touser' => $touser, 'template_id' => $template_id, 'url' => $url, 'topcolor' => $topcolor, 'data' => $data ); $jsondata = json_encode($template); $result = $this->wxsendtemplate($jsondata); return $result; } /**************************************************** * 微信设置oauth跳转url,返回字符串信息 - scope = snsapi_base //验证时不返回确认页面,只能获取openid ****************************************************/ public function wxoauthbase($redirecturl,$state = ,$appid = null){ $appid = is_null($appid) ? self::appid : $appid; $url = https://open.weixin.qq.com/connect/oauth2/authorize?appid=.$appid.&redirect_uri=.$redirecturl.&response_type=code&scope=snsapi_base&state=.$state.#wechat_redirect; return $url; } /**************************************************** * 微信设置oauth跳转url,返回字符串信息 - scope = snsapi_userinfo //获取用户完整信息 ****************************************************/ public function wxoauthuserinfo($redirecturl,$state = ,$appid = null){ $appid = is_null($appid) ? self::appid : $appid; $url = https://open.weixin.qq.com/connect/oauth2/authorize?appid=.$appid.&redirect_uri=.$redirecturl.&response_type=code&scope=snsapi_userinfo&state=.$state.#wechat_redirect; return $url; } /**************************************************** * 微信oauth跳转指定url ****************************************************/ public function wxheader($url){ header(location:.$url); } /**************************************************** * 微信通过oauth返回页面中获取at信息 ****************************************************/ public function wxoauthaccesstoken($code,$appid = null , $appsecret = null){ $appid = is_null($appid) ? self::appid : $appid; $appsecret = is_null($appsecret) ? self::appsecret : $appsecret; $url = https://api.weixin.qq.com/sns/oauth2/access_token?appid=.$appid.&secret=.$appsecret.&code=.$code.&grant_type=authorization_code; $result = $this->wxhttpsrequest($url); //print_r($result); $jsoninfo = json_decode($result, true); //$access_token = $jsoninfo[access_token]; return $jsoninfo; } /**************************************************** * 微信通过oauth的access_token的信息获取当前用户信息 // 只执行在snsapi_userinfo模式运行 ****************************************************/ public function wxoauthuser($oauthat,$openid){ $url = https://api.weixin.qq.com/sns/userinfo?access_token=.$oauthat.&openid=.$openid.&lang=zh_cn; $result = $this->wxhttpsrequest($url); $jsoninfo = json_decode($result, true); return $jsoninfo; } /***************************************************** * 生成随机字符串 - 最长为32位字符串 *****************************************************/ public function wxnoncestr($length = 16, $type = false) { $chars = abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz0123456789; $str = ; for ($i = 0; $i parameters = $parameters; return $this->parameters; } else{ return array(); } } /******************************************************* * 微信格式化数组变成参数格式 - 支持url加密 *******************************************************/ public function wxformatarray($parameters = null, $urlencode = false){ if(is_null($parameters)){ $parameters = $this->parameters; } $restr = ;//初始化空 ksort($parameters);//排序参数 foreach ($parameters as $k => $v){//循环定制参数 if (null != $v && null != $v && sign != $k) { if($urlencode){//如果参数需要增加url加密就增加,不需要则不需要 $v = urlencode($v); } $restr .= $k . = . $v . &;//返回完整字符串 } } if (strlen($restr) > 0) {//如果存在数据则将最后“&”删除 $restr = substr($restr, 0, strlen($restr)-1); } return $restr;//返回字符串 } /******************************************************* * 微信md5签名生成器 - 需要将参数数组转化成为字符串[wxformatarray方法] *******************************************************/ public function wxmd5sign($content, $privatekey){ try { if (is_null($key)) { throw new exception(财付通签名key不能为空!); } if (is_null($content)) { throw new exception(财付通签名内容不能为空); } $signstr = $content . &key= . $key; return strtoupper(md5($signstr)); } catch (exception $e) { die($e->getmessage()); } } /******************************************************* * 微信sha1签名生成器 - 需要将参数数组转化成为字符串[wxformatarray方法] *******************************************************/ public function wxsha1sign($content, $privatekey){ try { if (is_null($key)) { throw new exception(财付通签名key不能为空!); } if (is_null($content)) { throw new exception(财付通签名内容不能为空); } $signstr = $content . &key= . $key; return strtoupper(sha1($signstr)); } catch (exception $e) { die($e->getmessage()); } } /******************************************************* * 将数组解析xml - 微信红包接口 *******************************************************/ public function wxarraytoxml($parameters = null){ if(is_null($parameters)){ $parameters = $this->parameters; } if(!is_array($parameters) || empty($parameters)){ die(参数不为数组无法解析); } $xml = ; foreach ($arr as $key=>$val) { if (is_numeric($val)) { $xml.=.$val.; } else $xml.=; } $xml.=; return $xml; } }
后期还是会增加在一起的把这个class做起来,网上资源很多,但是都是有一定基础的人去看看改改可以,对于没有接触刚刚接触的新手还是需要给予支持的。帮助用户屡屡思路。
以上所述就是本文的全部内容了,希望大家能够喜欢。
http://www.bkjia.com/phpjc/978388.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/978388.htmltecharticlephp版微信公众平台红包api,php公众红包api 重写了一下php下面的微信api接口, 微信红包支持,jsapi的动态参数接口支持 http://git.oschina.net/yo...