重写了一下php下面的微信api接口,
微信红包支持,jsapi的动态参数接口支持
http://git.oschina.net/youkuiyuan/yky_test/blob/master/class/wxapi.class.php
微信api类 - 增加红包支持
<?php
/********************************************************
* @author kyler you <qq:2444756311>
* @link http://mp.weixin.qq.com/wiki/home/index.html
* @version 2.0.1
* @uses $wxapi = new wxapi();
* @package 微信api接口 陆续会继续进行更新
********************************************************/
class wxapi {
const appid = "";
const appsecret = "";
const mchid = ""; //商户号
const privatekey = ""; //私钥
public $parameters = array();
public function __construct(){
}
/****************************************************
* 微信提交api方法,返回微信指定json
****************************************************/
public function wxhttpsrequest($url,$data = null){
$curl = curl_init();
curl_setopt($curl, curlopt_url, $url);
curl_setopt($curl, curlopt_ssl_verifypeer, false);
curl_setopt($curl, curlopt_ssl_verifyhost, false);
if (!empty($data)){
curl_setopt($curl, curlopt_post, 1);
curl_setopt($curl, curlopt_postfields, $data);
}
curl_setopt($curl, curlopt_returntransfer, 1);
$output = curl_exec($curl);
curl_close($curl);
return $output;
}
/****************************************************
* 微信带证书提交数据 - 微信红包使用
****************************************************/
public function wxhttpsrequestpem($url, $vars, $second=30,$aheader=array()){
$ch = curl_init();
//超时时间
curl_setopt($ch,curlopt_timeout,$second);
curl_setopt($ch,curlopt_returntransfer, 1);
//这里设置代理,如果有的话
//curl_setopt($ch,curlopt_proxy, '10.206.30.98');
//curl_setopt($ch,curlopt_proxyport, 8080);
curl_setopt($ch,curlopt_url,$url);
curl_setopt($ch,curlopt_ssl_verifypeer,false);
curl_setopt($ch,curlopt_ssl_verifyhost,false);
//以下两种方式需选择一种
//第一种方法,cert 与 key 分别属于两个.pem文件
//默认格式为pem,可以注释
curl_setopt($ch,curlopt_sslcerttype,'pem');
curl_setopt($ch,curlopt_sslcert,getcwd().'/apiclient_cert.pem');
//默认格式为pem,可以注释
curl_setopt($ch,curlopt_sslkeytype,'pem');
curl_setopt($ch,curlopt_sslkey,getcwd().'/apiclient_key.pem');
curl_setopt($ch,curlopt_cainfo,'pem');
curl_setopt($ch,curlopt_cainfo,getcwd().'/rootca.pem');
//第二种方式,两个文件合成一个.pem文件
//curl_setopt($ch,curlopt_sslcert,getcwd().'/all.pem');
if( count($aheader) >= 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:$errorn";
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 < $length; $i++) {
$str .= substr($chars, mt_rand(0, strlen($chars) - 1), 1);
}
if($type == true){
return strtoupper(md5(time() . $str));
}
else {
return $str;
}
}
/*******************************************************
* 微信商户订单号 - 最长28位字符串
*******************************************************/
public function wxmchbillno($mchid = null) {
if(is_null($mchid)){
if(self::mchid == "" || is_null(self::mchid)){
$mchid = time();
}
else{
$mchid = self::mchid;
}
}
else{
$mchid = substr(addslashes($mchid),0,10);
}
return date("ymd",time()).time().$mchid;
}
/*******************************************************
* 微信格式化数组变成参数格式 - 支持url加密
*******************************************************/
public function wxsetparam($parameters){
if(is_array($parameters) && !empty($parameters)){
$this->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 = "<xml>";
foreach ($arr as $key=>$val)
{
if (is_numeric($val))
{
$xml.="<".$key.">".$val."</".$key.">";
}
else
$xml.="<".$key."><![cdata[".$val."]]></".$key.">";
}
$xml.="</xml>";
return $xml;
}
}
后期还是会增加在一起的把这个class做起来,网上资源很多,但是都是有一定基础的人去看看改改可以,对于没有接触刚刚接触的新手还是需要给予支持的。帮助用户屡屡思路。
以上所述就是本文的全部内容了,希望大家能够喜欢。
【说明】:本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:)!