微信API demo

廢話很少說了,直接分享代碼:php

<?php
namespace  app\wechat\controller;
use think\Controller;
use think\Db;

class Wxapi extends Controller
{
    const appId = "************";
    const appSecret = "******************";
    const mchid = ""; //商戶號
    const privatekey = ""; //私鑰
    public $parameters = array();
    public $jsApiTicket = NULL;
    public $jsApiTime = NULL;

    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:$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;

        $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;
    }

    /****************************************************
     * 微信獲取ApiTicket 返回指定微信公衆號的at信息
     ****************************************************/

    public function wxJsApiTicket($appId = NULL, $appSecret = NULL)
    {
        $appId = is_null($appId) ? self::appId : $appId;
        $appSecret = is_null($appSecret) ? self::appSecret : $appSecret;

        $url = "https://api.weixin.qq.com/cgi-bin/ticket/getticket?type=jsapi&access_token=" . $this->wxAccessToken();
        $result = $this->wxHttpsRequest($url);
        $jsoninfo = json_decode($result, true);
        $ticket = $jsoninfo['ticket'];
        //echo $ticket . "<br />";
        return $ticket;
    }

    public function wxVerifyJsApiTicket($appId = NULL, $appSecret = NULL)
    {
        if (!empty($this->jsApiTime) && intval($this->jsApiTime) > time() && !empty($this->jsApiTicket)) {
            $ticket = $this->jsApiTicket;
        } else {
            $ticket = $this->wxJsApiTicket($appId, $appSecret);
            $this->jsApiTicket = $ticket;
            $this->jsApiTime = time() + 7200;
        }
        return $ticket;
    }

    /****************************************************
     * 微信經過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;
    }

    /****************************************************
     * 微信生成二維碼ticket
     ****************************************************/

    public function wxQrCodeTicket($jsonData)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/cgi-bin/qrcode/create?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        return $result;
    }

    /****************************************************
     * 微信經過ticket生成二維碼
     ****************************************************/
    public function wxQrCode($ticket)
    {
        $url = "https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket=" . urlencode($ticket);
        return $url;
    }

    /****************************************************
     * 微信經過指定模板信息發送給指定用戶,發送完成後返回指定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 = urldecode(json_encode($template));
        echo $jsonData;
        $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;
    }

    /****************************************************
     * 建立自定義菜單
     ****************************************************/

    public function wxMenuCreate($jsonData)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/cgi-bin/menu/create?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /****************************************************
     * 獲取自定義菜單
     ****************************************************/

    public function wxMenuGet()
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/cgi-bin/menu/get?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /****************************************************
     * 刪除自定義菜單
     ****************************************************/

    public function wxMenuDelete()
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/cgi-bin/menu/delete?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /****************************************************
     * 獲取第三方自定義菜單
     ****************************************************/

    public function wxMenuGetInfo()
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/cgi-bin/get_current_selfmenu_info?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }


    /****************************************************
     * 微信客服接口 - Add 添加客服人員
     ****************************************************/

    public function wxServiceAdd($jsonData)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/customservice/kfaccount/add?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /****************************************************
     * 微信客服接口 - Update 編輯客服人員
     ****************************************************/

    public function wxServiceUpdate($jsonData)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/customservice/kfaccount/update?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }


    /****************************************************
     * 微信客服接口 - Delete 刪除客服人員
     ****************************************************/

    public function wxServiceDelete($jsonData)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/customservice/kfaccount/del?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /*******************************************************
     *  微信客服接口 - 上傳頭像
     *******************************************************/
    public function wxServiceUpdateCover($kf_account, $media = '')
    {
        $wxAccessToken = $this->wxAccessToken();
        //$data['access_token'] = $wxAccessToken;
        $data['media'] = '@D:\\workspace\\htdocs\\yky_test\\logo.jpg';
        $url = "https:// api.weixin.qq.com/customservice/kfaccount/uploadheadimg?access_token=" . $wxAccessToken . "&kf_account=" . $kf_account;
        $result = $this->wxHttpsRequest($url, $data);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /****************************************************
     *  微信客服接口 - 獲取客服列表
     ****************************************************/

    public function wxServiceList()
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/cgi-bin/customservice/getkflist?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /****************************************************
     *  微信客服接口 - 獲取在線客服接待信息
     ****************************************************/

    public function wxServiceOnlineList()
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/cgi-bin/customservice/getonlinekflist?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /****************************************************
     *  微信客服接口 - 客服發送信息
     ****************************************************/

    public function wxServiceSend($jsonData)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /****************************************************
     *  微信客服會話接口 - 建立會話
     ****************************************************/

    public function wxServiceSessionAdd($jsonData)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/customservice/kfsession/create?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /****************************************************
     *  微信客服會話接口 - 關閉會話
     ****************************************************/

    public function wxServiceSessionClose()
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/customservice/kfsession/close?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /****************************************************
     *  微信客服會話接口 - 獲取會話
     ****************************************************/

    public function wxServiceSessionGet($openId)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/customservice/kfsession/getsession?access_token=" . $wxAccessToken . "&openid=" . $openId;
        $result = $this->wxHttpsRequest($url);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /****************************************************
     *  微信客服會話接口 - 獲取會話列表
     ****************************************************/

    public function wxServiceSessionList($kf_account)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/customservice/kfsession/getsessionlist?access_token=" . $wxAccessToken . "&kf_account=" . $kf_account;
        $result = $this->wxHttpsRequest($url);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /****************************************************
     *  微信客服會話接口 - 未接入會話
     ****************************************************/

    public function wxServiceSessionWaitCase()
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/customservice/kfsession/getwaitcase?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /****************************************************
     *  微信搖一搖 - 申請設備ID
     ****************************************************/

    public function wxDeviceApply($jsonData)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/shakearound/device/applyid?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /****************************************************
     *  微信搖一搖 - 編輯設備ID
     ****************************************************/

    public function wxDeviceUpdate($jsonData)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/shakearound/device/update?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /****************************************************
     *  微信搖一搖 - 本店關聯設備
     ****************************************************/

    public function wxDeviceBindLocation($jsonData)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/shakearound/device/bindlocation?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /****************************************************
     *  微信搖一搖 - 查詢設備列表
     ****************************************************/

    public function wxDeviceSearch($jsonData)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/shakearound/device/search?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /****************************************************
     *  微信搖一搖 - 新增頁面
     ****************************************************/

    public function wxPageAdd($jsonData)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/shakearound/page/add?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /****************************************************
     *  微信搖一搖 - 編輯頁面
     ****************************************************/

    public function wxPageUpdate($jsonData)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/shakearound/page/update?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /****************************************************
     *  微信搖一搖 - 查詢頁面
     ****************************************************/

    public function wxPageSearch($jsonData)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/shakearound/page/search?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /****************************************************
     *  微信搖一搖 - 刪除頁面
     ****************************************************/

    public function wxPageDelete($jsonData)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/shakearound/page/delete?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /*******************************************************
     *  微信搖一搖 - 上傳圖片素材
     *******************************************************/
    public function wxMaterialAdd($media = '')
    {
        $wxAccessToken = $this->wxAccessToken();
        //$data['access_token'] = $wxAccessToken;
        $data['media'] = '@D:\\workspace\\htdocs\\yky_test\\logo.jpg';
        $url = "https://api.weixin.qq.com/shakearound/material/add?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $data);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /****************************************************
     *  微信搖一搖 - 配置設備與頁面的關聯關係
     ****************************************************/

    public function wxDeviceBindPage($jsonData)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/shakearound/device/bindpage?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /****************************************************
     *  微信搖一搖 - 獲取搖周邊的設備及用戶信息
     ****************************************************/

    public function wxGetShakeInfo($jsonData)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/shakearound/user/getshakeinfo?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /****************************************************
     *  微信搖一搖 - 以設備爲維度的數據統計接口
     ****************************************************/

    public function wxGetShakeStatistics($jsonData)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/shakearound/statistics/device?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $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($privatekey)) {
                throw new Exception("財付通簽名key不能爲空!");
            }
            if (is_null($content)) {
                throw new Exception("財付通簽名內容不能爲空");
            }
            $signStr = $content . "&key=" . $privatekey;
            return strtoupper(md5($signStr));
        } catch (Exception $e) {
            die($e->getMessage());
        }
    }

    /*******************************************************
     *  微信Sha1簽名生成器 - 須要將參數數組轉化成爲字符串[wxFormatArray方法]
     *******************************************************/
    public function wxSha1Sign($content)
    {
        try {
            if (is_null($content)) {
                throw new Exception("簽名內容不能爲空");
            }
            //$signStr = $content;
            return sha1($content);
        } catch (Exception $e) {
            die($e->getMessage());
        }
    }

    /*******************************************************
     *  微信jsApi整合方法 - 經過調用此方法得到jsapi數據
     *******************************************************/
  /*  public function wxJsapiPackage()
    {
        $jsapi_ticket = $this->wxVerifyJsApiTicket();

        // 注意 URL 必定要動態獲取,不能 hardcode.
        $protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) ? "https://" : "http://";
        $url = $protocol . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"];

        $timestamp = time();
        $nonceStr = $this->wxNonceStr();

        $signPackage = array(
            "jsapi_ticket" => $jsapi_ticket,
            "nonceStr" => $nonceStr,
            "timestamp" => $timestamp,
            "url" => $url
        );

        // 這裏參數的順序要按照 key 值 ASCII 碼升序排序
        $rawString = "jsapi_ticket=$jsapi_ticket&noncestr=$nonceStr×tamp=$timestamp&url=$url";

        //$rawString = $this->wxFormatArray($signPackage);
        $signature = $this->wxSha1Sign($rawString);

        $signPackage['signature'] = $signature;
        $signPackage['rawString'] = $rawString;
        $signPackage['appId'] = self::appId;

        return $signPackage;
    }*/


    /*******************************************************
     *  微信卡券:JSAPI 卡券Package - 基礎參數沒有附帶任何值 - 再生產環境中須要根據實際狀況進行修改
     *******************************************************/
    public function wxCardPackage($cardId, $timestamp = '')
    {
        $api_ticket = $this->wxVerifyJsApiTicket();
        if (!empty($timestamp)) {
            $timestamp = $timestamp;
        } else {
            $timestamp = time();
        }

        $arrays = array(self::appSecret, $timestamp, $cardId);
        sort($arrays, SORT_STRING);
        //print_r($arrays);
        //echo implode("",$arrays)."<br />";
        $string = sha1(implode($arrays));
        //echo $string;
        $resultArray['cardId'] = $cardId;
        $resultArray['cardExt'] = array();
        $resultArray['cardExt']['code'] = '';
        $resultArray['cardExt']['openid'] = '';
        $resultArray['cardExt']['timestamp'] = $timestamp;
        $resultArray['cardExt']['signature'] = $string;
        //print_r($resultArray);
        return $resultArray;
    }

    /*******************************************************
     *  微信卡券:JSAPI 卡券所有卡券 Package
     *******************************************************/
    public function wxCardAllPackage($cardIdArray = array(), $timestamp = '')
    {
        $reArrays = array();
        if (!empty($cardIdArray) && (is_array($cardIdArray) || is_object($cardIdArray))) {
            //print_r($cardIdArray);
            foreach ($cardIdArray as $value) {
                //print_r($this->wxCardPackage($value,$openid));
                $reArrays[] = $this->wxCardPackage($value, $timestamp);
            }
            //print_r($reArrays);
        } else {
            $reArrays[] = $this->wxCardPackage($cardIdArray, $timestamp);
        }
        return strval(json_encode($reArrays));
    }

    /*******************************************************
     *  微信卡券:獲取卡券列表
     *******************************************************/
    public function wxCardListPackage($cardType = "", $cardId = "")
    {
        //$api_ticket = $this->wxVerifyJsApiTicket();
        $resultArray = array();
        $timestamp = time();
        $nonceStr = $this->wxNonceStr();
        //$strings =
        $arrays = array(self::appId, self::appSecret, $timestamp, $nonceStr);
        sort($arrays, SORT_STRING);
        $string = sha1(implode($arrays));

        $resultArray['app_id'] = self::appId;
        $resultArray['card_sign'] = $string;
        $resultArray['time_stamp'] = $timestamp;
        $resultArray['nonce_str'] = $nonceStr;
        $resultArray['card_type'] = $cardType;
        $resultArray['card_id'] = $cardId;
        return $resultArray;
    }

    /*******************************************************
     *  將數組解析XML - 微信紅包接口
     *******************************************************/
    public function wxArrayToXml($parameters = NULL)
    {
        if (is_null($parameters)) {
            $parameters = $this->parameters;
        }

        if (!is_array($parameters) || empty($parameters)) {
            die("參數不爲數組沒法解析");
        }

        $xml = "<xml>";
        foreach ($parameters as $key => $val) {
            if (is_numeric($val)) {
                $xml .= "<" . $key . ">" . $val . "</" . $key . ">";
            } else
                $xml .= "<" . $key . "><![CDATA[" . $val . "]]></" . $key . ">";
        }
        $xml .= "</xml>";
        return $xml;
    }

    /*******************************************************
     *  微信卡券:上傳LOGO - 須要改寫動態功能
     *******************************************************/
    public function wxCardUpdateImg()
    {
        $wxAccessToken = $this->wxAccessToken();
        //$data['access_token'] = $wxAccessToken;
        $data['buffer'] = '@D:\\workspace\\htdocs\\yky_test\\logo.jpg';
        $url = "https://api.weixin.qq.com/cgi-bin/media/uploadimg?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $data);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
        //array(1) { ["url"]=> string(121) "http://mmbiz.qpic.cn/mmbiz/ibuYxPHqeXePNTW4ATKyias1Cf3zTKiars9PFPzF1k5icvXD7xW0kXUAxHDzkEPd9micCMCN0dcTJfW6Tnm93MiaAfRQ/0" }
    }

    /*******************************************************
     *  微信卡券:獲取顏色
     *******************************************************/
    public function wxCardColor()
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/card/getcolors?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /*******************************************************
     *  微信卡券:拉取門店列表
     *******************************************************/
    public function wxBatchGet($offset = 0, $count = 0)
    {
        $jsonData = json_encode(array('offset' => intval($offset), 'count' => intval($count)));
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/card/location/batchget?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /*******************************************************
     *  微信卡券:建立卡券
     *******************************************************/
    public function wxCardCreated($jsonData)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/card/create?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /*******************************************************
     *  微信卡券:查詢卡券詳情
     *******************************************************/
    public function wxCardGetInfo($jsonData)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/card/get?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /*******************************************************
     *  微信卡券:設置白名單
     *******************************************************/
    public function wxCardWhiteList($jsonData)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/card/testwhitelist/set?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }


    /*******************************************************
     *  微信卡券:消耗卡券
     *******************************************************/
    public function wxCardConsume($jsonData)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/card/code/consume?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /*******************************************************
     *  微信卡券:刪除卡券
     *******************************************************/
    public function wxCardDelete($jsonData)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/card/delete?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /*******************************************************
     *  微信卡券:選擇卡券 - 解析CODE
     *******************************************************/
    public function wxCardDecryptCode($jsonData)
    {
        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/card/code/decrypt?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /*******************************************************
     *  微信卡券:更改庫存
     *******************************************************/
    public function wxCardModifyStock($cardId, $increase_stock_value = 0, $reduce_stock_value = 0)
    {
        if (intval($increase_stock_value) == 0 && intval($reduce_stock_value) == 0) {
            return false;
        }

        $jsonData = json_encode(array("card_id" => $cardId, 'increase_stock_value' => intval($increase_stock_value), 'reduce_stock_value' => intval($reduce_stock_value)));

        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/card/modifystock?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }

    /*******************************************************
     *  微信卡券:查詢用戶CODE
     *******************************************************/
    public function wxCardQueryCode($code, $cardId = '')
    {

        $jsonData = json_encode(array("code" => $code, 'card_id' => $cardId));

        $wxAccessToken = $this->wxAccessToken();
        $url = "https://api.weixin.qq.com/card/code/get?access_token=" . $wxAccessToken;
        $result = $this->wxHttpsRequest($url, $jsonData);
        $jsoninfo = json_decode($result, true);
        return $jsoninfo;
    }
}
相關文章
相關標籤/搜索