搜尋
首頁php教程PHP源码微信红包接口API - 拓展微信公众平台通用接口API(PHP版)

微信API接口,微信红包支持,JSAPI的动态参数接口支持

<?php
    /********************************************************
     *		@author Kyler You*		@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, &#39;10.206.30.98&#39;);
                //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,&#39;PEM&#39;);
                curl_setopt($ch,CURLOPT_SSLCERT,getcwd().&#39;/apiclient_cert.pem&#39;);
                //默认格式为PEM,可以注释
                curl_setopt($ch,CURLOPT_SSLKEYTYPE,&#39;PEM&#39;);
                curl_setopt($ch,CURLOPT_SSLKEY,getcwd().&#39;/apiclient_key.pem&#39;);

                curl_setopt($ch,CURLOPT_CAINFO,&#39;PEM&#39;);
                curl_setopt($ch,CURLOPT_CAINFO,getcwd().&#39;/rootca.pem&#39;);

                //第二种方式,两个文件合成一个.pem文件
                //curl_setopt($ch,CURLOPT_SSLCERT,getcwd().&#39;/all.pem&#39;);

                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:$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 = &#39;#7B68EE&#39;){
                $template = array(
                        &#39;touser&#39; => $touser,
                        &#39;template_id&#39; => $template_id,
                        &#39;url&#39; => $url,
                        &#39;topcolor&#39; => $topcolor,
                        &#39;data&#39; => $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 = "";
            foreach ($arr as $key=>$val)
            {
                if (is_numeric($val))
                {
                    $xml.="".$val.""; 
                }
                else
                    $xml.="";  
            }
            $xml.="";
            return $xml; 
        }
        
    }

                   

陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

AI Hentai Generator

AI Hentai Generator

免費產生 AI 無盡。

熱門文章

R.E.P.O.能量晶體解釋及其做什麼(黃色晶體)
3 週前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.最佳圖形設置
3 週前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.如果您聽不到任何人,如何修復音頻
3 週前By尊渡假赌尊渡假赌尊渡假赌

熱工具

SublimeText3 英文版

SublimeText3 英文版

推薦:為Win版本,支援程式碼提示!

MantisBT

MantisBT

Mantis是一個易於部署的基於Web的缺陷追蹤工具,用於幫助產品缺陷追蹤。它需要PHP、MySQL和一個Web伺服器。請查看我們的演示和託管服務。

mPDF

mPDF

mPDF是一個PHP庫,可以從UTF-8編碼的HTML產生PDF檔案。原作者Ian Back編寫mPDF以從他的網站上「即時」輸出PDF文件,並處理不同的語言。與原始腳本如HTML2FPDF相比,它的速度較慢,並且在使用Unicode字體時產生的檔案較大,但支援CSS樣式等,並進行了大量增強。支援幾乎所有語言,包括RTL(阿拉伯語和希伯來語)和CJK(中日韓)。支援嵌套的區塊級元素(如P、DIV),

SublimeText3 Mac版

SublimeText3 Mac版

神級程式碼編輯軟體(SublimeText3)

SublimeText3 Linux新版

SublimeText3 Linux新版

SublimeText3 Linux最新版