微信入口绑定,微信事件处理,微信API全部操作

微信入口绑定,微信事件处理,微信API全部操作包含在这些文件中。
微信支付、微信红包、微信卡券、微信小店。


1. index.php 
  1. include_once 'lib.inc.php';

  2. $wcObj = new WeChat("YOUKUIYUAN");
  3. $wcObj->wcValid();
复制代码
2. 微信入口类

  1. /**
  2. * Description of wechat
  3. *
  4. * @author Administrator
  5. */
  6. class WeChat extends WxApi{
  7.     public $token = "";
  8.     //put your code here
  9.     public function __construct($token = "") {
  10.         parent::__construct();
  11.         $this->token = $token;
  12.     }

  13.     public function wcCheckSignature(){
  14.         try{
  15.             if (empty($this->token)) {
  16.                 throw new Exception('TOKEN is not defined!');
  17.             }
  18.              
  19.             $signature = $_GET["signature"];
  20.             $timestamp = $_GET["timestamp"];
  21.             $nonce = $_GET["nonce"];
  22.                  
  23.             $token = $this->token;
  24.             $tmpArr = array($token, $timestamp, $nonce);
  25.             // use SORT_STRING rule
  26.             sort($tmpArr, SORT_STRING);
  27.             $tmpStr = implode( $tmpArr );
  28.             $tmpStr = sha1( $tmpStr );

  29.             if( $tmpStr == $signature ){
  30.                     return true;
  31.             }else{
  32.                     return false;
  33.             }
  34.         } 
  35.         catch (Exception $e) {
  36.             echo 'Message: ' .$e->getMessage();
  37.         }
  38.     }
  39.      
  40.     public function wcValid(){
  41.         $echoStr = isset($_GET["echostr"]) && !empty($_GET["echostr"]) ? addslashes($_GET["echostr"]) : NULL;
  42.         if(is_null($echoStr)){
  43.             $this->wcMsg();
  44.         }
  45.         else{
  46.             //valid signature , option
  47.             if($this->wcCheckSignature()){
  48.                 echo $echoStr;
  49.                 exit;
  50.             }
  51.             else{
  52.                 exit();
  53.             }
  54.         }
  55.     }
  56.      
  57.     public function wcMsg(){
  58.         //get post data, May be due to the different environments
  59.         $postStr = isset($GLOBALS["HTTP_RAW_POST_DATA"]) && !empty($GLOBALS["HTTP_RAW_POST_DATA"]) ? $GLOBALS["HTTP_RAW_POST_DATA"] : "";
  60.         if(!empty($postStr)){
  61.             libxml_disable_entity_loader(true);
  62.             $postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);
  63.             $this->zcLog(TRUE,$postObj);
  64.              
  65.             $fromUsername = $postObj->FromUserName;
  66.             $toUsername = $postObj->ToUserName;
  67.             $MsgType = $postObj->MsgType;
  68.              
  69.             if($MsgType == 'event'){//执行事件相应
  70.                 $Event = $postObj->Event;
  71.                 switch ($Event) {
  72.                     case 'subscribe'://关注
  73.                         break;
  74.                     case 'unsubscribe'://取消关注
  75.                         break;
  76.                     case 'SCAN'://扫描
  77.                         break;
  78.                     case 'LOCATION'://地址
  79.                         break;
  80.                     case 'CLICK'://点击时间
  81.                         break;
  82.                     case 'VIEW'://跳转
  83.                         break;
  84.                     case 'card_pass_check'://卡券审核通过
  85.                         break;
  86.                     case 'card_not_pass_check'://卡券审核失败
  87.                         break;
  88.                     case 'user_get_card'://用户领取卡券
  89.                         break;
  90.                     case 'user_del_card'://用户删除卡券
  91.                         break;
  92.                     case 'user_view_card'://用户浏览会员卡
  93.                         break;
  94.                     case 'user_consume_card'://用户核销卡券
  95.                         break;
  96.                     case 'merchant_order'://微小店用户下单付款
  97.                         break;
  98.                     default:
  99.                         break;
  100.                 }
  101.             }
  102.             else{
  103.                 switch ($MsgType) {
  104.                     case 'text'://文本格式
  105.                         break;
  106.                     case 'image'://图片格式
  107.                         break;
  108.                     case 'voice'://声音
  109.                         break;
  110.                     case 'video'://视频
  111.                         break;
  112.                     case 'shortvideo'://小视频
  113.                         break;
  114.                     case 'location'://上传地理位置
  115.                         break;
  116.                     case 'link'://链接相应
  117.                         break;
  118.                     default:
  119.                         break;
  120.                 }                
  121.             }
  122.              
  123.             ////////////////////////////////////////////////////////////////////
  124.             $keyword = trim($postObj->Content);
  125.             $time = time();
  126.             $textTpl = "
  127.                            
  128.                            
  129.                             %s
  130.                            
  131.                            
  132.                             0
  133.                         ";             
  134.             if(!empty( $keyword )){
  135.                 $msgType = "text";
  136.                 $contentStr = "Welcome to wechat world!";
  137.                 $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
  138.                 echo $resultStr;
  139.             }
  140.             else{
  141.                 echo "Input something...";
  142.             }
  143.             ////////////////////////////////////////////////////////////////////
  144.         }
  145.         else{
  146.             echo "暂时没有任何信息!";
  147.             exit;
  148.         }
  149.     }
  150.      
  151.     //日志LOG
  152.     public function zcLog($errcode , $errmsg){
  153.         $this->returnAy = array();
  154.         $this->returnAy['errcode'] = $errcode;
  155.         $this->returnAy['errmsg'] = $errmsg;
  156.         $this->returnAy['errtime'] = date("Y-m-d H:i:s",time());
  157.         $logfile = fopen("logfile_".date("Ymd",time()).".txt", "a+");
  158.         $txt = json_encode($this->returnAy)."\n";
  159.         fwrite($logfile, $txt);
  160.         fclose($logfile);
  161.         //return $this->returnAy;
  162.     }
  163.      
  164. }
复制代码
3. 微信操作类 - 更新了自定义菜单部分

  1.     /********************************************************
  2.      *      @author Kyler You
  3.      *      @link http://mp.weixin.qq.com/wiki/home/index.html
  4.      *      @version 2.0.1
  5.      *      @uses $wxApi = new WxApi();
  6.      *      @package 微信API接口 陆续会继续进行更新
  7.      ********************************************************/

  8.     class WxApi {
  9.         //const appId         = "";
  10.         //const appSecret     = "";
  11.         const appId         = "";
  12.         const appSecret     = "";
  13.         //const mchid         = ""; //商户号
  14.         //const privatekey    = ""; //私钥
  15.         public $parameters  = array();

  16.         public function __construct(){

  17.         }

  18.         /****************************************************
  19.          *  微信提交API方法,返回微信指定JSON
  20.          ****************************************************/

  21.         public function wxHttpsRequest($url,$data = null){
  22.                 $curl = curl_init();
  23.                 curl_setopt($curl, CURLOPT_URL, $url);
  24.                 curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
  25.                 curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, FALSE);
  26.                 if (!empty($data)){
  27.                         curl_setopt($curl, CURLOPT_POST, 1);
  28.                         curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
  29.                 }
  30.                 curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  31.                 $output = curl_exec($curl);
  32.                 curl_close($curl);
  33.                 return $output;
  34.         }

  35.         /****************************************************
  36.          *  微信带证书提交数据 - 微信红包使用
  37.          ****************************************************/

  38.         public function wxHttpsRequestPem($url, $vars, $second=30,$aHeader=array()){
  39.                 $ch = curl_init();
  40.                 //超时时间
  41.                 curl_setopt($ch,CURLOPT_TIMEOUT,$second);
  42.                 curl_setopt($ch,CURLOPT_RETURNTRANSFER, 1);
  43.                 //这里设置代理,如果有的话
  44.                 //curl_setopt($ch,CURLOPT_PROXY, '10.206.30.98');
  45.                 //curl_setopt($ch,CURLOPT_PROXYPORT, 8080);
  46.                 curl_setopt($ch,CURLOPT_URL,$url);
  47.                 curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,false);
  48.                 curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,false);

  49.                 //以下两种方式需选择一种

  50.                 //第一种方法,cert 与 key 分别属于两个.pem文件
  51.                 //默认格式为PEM,可以注释
  52.                 curl_setopt($ch,CURLOPT_SSLCERTTYPE,'PEM');
  53.                 curl_setopt($ch,CURLOPT_SSLCERT,getcwd().'/apiclient_cert.pem');
  54.                 //默认格式为PEM,可以注释
  55.                 curl_setopt($ch,CURLOPT_SSLKEYTYPE,'PEM');
  56.                 curl_setopt($ch,CURLOPT_SSLKEY,getcwd().'/apiclient_key.pem');

  57.                 curl_setopt($ch,CURLOPT_CAINFO,'PEM');
  58.                 curl_setopt($ch,CURLOPT_CAINFO,getcwd().'/rootca.pem');

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

  61.                 if( count($aHeader) >= 1 ){
  62.                         curl_setopt($ch, CURLOPT_HTTPHEADER, $aHeader);
  63.                 }

  64.                 curl_setopt($ch,CURLOPT_POST, 1);
  65.                 curl_setopt($ch,CURLOPT_POSTFIELDS,$vars);
  66.                 $data = curl_exec($ch);
  67.                 if($data){
  68.                         curl_close($ch);
  69.                         return $data;
  70.                 }
  71.                 else { 
  72.                         $error = curl_errno($ch);
  73.                         echo "call faild, errorCode:$error\n"; 
  74.                         curl_close($ch);
  75.                         return false;
  76.                 }
  77.         }

  78.         /****************************************************
  79.          *  微信获取AccessToken 返回指定微信公众号的at信息
  80.          ****************************************************/

  81.         public function wxAccessToken($appId = NULL , $appSecret = NULL){
  82.                 $appId          = is_null($appId) ? self::appId : $appId;
  83.                 $appSecret      = is_null($appSecret) ? self::appSecret : $appSecret;
  84.                  
  85.                 $data = json_decode(file_get_contents("access_token.json"));
  86.                 if ($data->expire_time < time()) {
  87.                     //echo $appId,$appSecret;
  88.                     $url            = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=".$appId."&secret=".$appSecret;
  89.                     $result         = $this->wxHttpsRequest($url);
  90.                     //print_r($result);
  91.                     $jsoninfo       = json_decode($result, true);
  92.                     $access_token   = $jsoninfo["access_token"];
  93.                     if ($access_token) {
  94.                         $data->expire_time = time() + 7000;
  95.                         $data->access_token = $access_token;
  96.                         $fp = fopen("access_token.json", "w");
  97.                         fwrite($fp, json_encode($data));
  98.                         fclose($fp);
  99.                     }
  100.                 }
  101.                 else {
  102.                     $access_token = $data->access_token;
  103.                 }
  104.                 return $access_token;
  105.         }

  106.         /****************************************************
  107.          *  微信获取AccessToken 返回指定微信公众号的at信息
  108.          ****************************************************/

  109.         public function wxJsApiTicket($appId = NULL , $appSecret = NULL){
  110.                 $appId          = is_null($appId) ? self::appId : $appId;
  111.                 $appSecret      = is_null($appSecret) ? self::appSecret : $appSecret;
  112.                  
  113.                 $data = json_decode(file_get_contents("jsapi_ticket.json"));
  114.                 if ($data->expire_time < time()) {                
  115.                     $url        = "https://api.weixin.qq.com/cgi-bin/ticket/getticket?type=jsapi&access_token=".$this->wxAccessToken();
  116.                     $result         = $this->wxHttpsRequest($url);
  117.                     $jsoninfo       = json_decode($result, true);
  118.                     $ticket = $jsoninfo['ticket'];
  119.                     if ($ticket) {
  120.                         $data->expire_time = time() + 7000;
  121.                         $data->jsapi_ticket = $ticket;
  122.                         $fp = fopen("jsapi_ticket.json", "w");
  123.                         fwrite($fp, json_encode($data));
  124.                         fclose($fp);
  125.                     }
  126.                 }
  127.                 else {
  128.                     $ticket = $data->jsapi_ticket;
  129.                 }
  130.                 return $ticket;
  131.         }
  132.          
  133.         /****************************************************
  134.          *  微信通过OPENID获取用户信息,返回数组
  135.          ****************************************************/

  136.         public function wxGetUser($openId){
  137.             $wxAccessToken  = $this->wxAccessToken();
  138.             $url            = "https://api.weixin.qq.com/cgi-bin/user/info?access_token=".$wxAccessToken."&openid=".$openId."&lang=zh_CN";
  139.             $result         = $this->wxHttpsRequest($url);
  140.             $jsoninfo       = json_decode($result, true);
  141.             return $jsoninfo;
  142.         }        

  143.         /****************************************************
  144.          *  微信生成二维码ticket
  145.          ****************************************************/

  146.         public function wxQrCodeTicket($jsonData){
  147.             $wxAccessToken  = $this->wxAccessToken();
  148.             $url        = "https://api.weixin.qq.com/cgi-bin/qrcode/create?access_token=".$wxAccessToken;
  149.             $result         = $this->wxHttpsRequest($url,$jsonData);
  150.             return $result;
  151.         }
  152.          
  153.         /****************************************************
  154.          *  微信通过ticket生成二维码
  155.          ****************************************************/
  156.         public function wxQrCode($ticket){
  157.             $url    = "https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket=" . urlencode($ticket);
  158.             return $url;
  159.         }

  160.         /****************************************************
  161.          *      发送自定义的模板消息
  162.          ****************************************************/

  163.         public function wxSetSend($touser, $template_id, $url, $data, $topcolor = '#7B68EE'){
  164.                 $template = array(
  165.                         'touser' => $touser,
  166.                         'template_id' => $template_id,
  167.                         'url' => $url,
  168.                         'topcolor' => $topcolor,
  169.                         'data' => $data
  170.                 );
  171.                 $jsonData = json_encode($template);
  172.                 $result = $this->wxSendTemplate($jsonData);
  173.                 return $result;
  174.         }

  175.         /****************************************************
  176.          *  微信设置OAUTH跳转URL,返回字符串信息 - SCOPE = snsapi_base //验证时不返回确认页面,只能获取OPENID
  177.          ****************************************************/

  178.         public function wxOauthBase($redirectUrl,$state = "",$appId = NULL){
  179.                 $appId          = is_null($appId) ? self::appId : $appId;
  180.                 $url = "https://open.weixin.qq.com/connect/oauth2/authorize?appid=".$appId."&redirect_uri=".$redirectUrl."&response_type=code&scope=snsapi_base&state=".$state."#wechat_redirect";
  181.                 return $url;
  182.         }

  183.         /****************************************************
  184.          *  微信设置OAUTH跳转URL,返回字符串信息 - SCOPE = snsapi_userinfo //获取用户完整信息
  185.          ****************************************************/

  186.         public function wxOauthUserinfo($redirectUrl,$state = "",$appId = NULL){
  187.                 $appId          = is_null($appId) ? self::appId : $appId;
  188.                 $url = "https://open.weixin.qq.com/connect/oauth2/authorize?appid=".$appId."&redirect_uri=".$redirectUrl."&response_type=code&scope=snsapi_userinfo&state=".$state."#wechat_redirect";
  189.                 return $url;
  190.         }

  191.         /****************************************************
  192.          *  微信OAUTH跳转指定URL
  193.          ****************************************************/

  194.         public function wxHeader($url){
  195.                 header("location:".$url);
  196.         }

  197.         /****************************************************
  198.          *  微信通过OAUTH返回页面中获取AT信息
  199.          ****************************************************/

  200.         public function wxOauthAccessToken($code,$appId = NULL , $appSecret = NULL){
  201.                 $appId          = is_null($appId) ? self::appId : $appId;
  202.                 $appSecret      = is_null($appSecret) ? self::appSecret : $appSecret;
  203.                 $url = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=".$appId."&secret=".$appSecret."&code=".$code."&grant_type=authorization_code";
  204.                 $result         = $this->wxHttpsRequest($url);
  205.                 //print_r($result);
  206.                 $jsoninfo       = json_decode($result, true);
  207.                 //$access_token     = $jsoninfo["access_token"];
  208.                 return $jsoninfo;           
  209.         }

  210.         /****************************************************
  211.          *  微信通过OAUTH的Access_Token的信息获取当前用户信息 // 只执行在snsapi_userinfo模式运行
  212.          ****************************************************/

  213.         public function wxOauthUser($OauthAT,$openId){
  214.                 $url            = "https://api.weixin.qq.com/sns/userinfo?access_token=".$OauthAT."&openid=".$openId."&lang=zh_CN";
  215.                 $result         = $this->wxHttpsRequest($url);
  216.                 $jsoninfo       = json_decode($result, true);
  217.                 return $jsoninfo;           
  218.         }

  219.         /****************************************************
  220.          *  创建自定义菜单
  221.          ****************************************************/

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

  229.         /****************************************************
  230.          *  获取自定义菜单
  231.          ****************************************************/

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

  239.         /****************************************************
  240.          *  删除自定义菜单
  241.          ****************************************************/

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

  249.         /****************************************************
  250.          *  获取第三方自定义菜单
  251.          ****************************************************/

  252.         public function wxMenuGetInfo(){
  253.             $wxAccessToken  = $this->wxAccessToken();
  254.             $url            = "https://api.weixin.qq.com/cgi-bin/get_current_selfmenu_info?access_token=" . $wxAccessToken;
  255.             $result         = $this->wxHttpsRequest($url);
  256.             $jsoninfo       = json_decode($result, true);
  257.             return $jsoninfo;
  258.         }
  259.                  
  260.         /*****************************************************
  261.          *      生成随机字符串 - 最长为32位字符串
  262.          *****************************************************/
  263.         public function wxNonceStr($length = 16, $type = FALSE) {
  264.             $chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
  265.             $str = "";
  266.             for ($i = 0; $i < $length; $i++) {
  267.               $str .= substr($chars, mt_rand(0, strlen($chars) - 1), 1);
  268.             }
  269.             if($type == TRUE){
  270.                 return strtoupper(md5(time() . $str));
  271.             }
  272.             else {
  273.                 return $str;
  274.             }
  275.         }
  276.          
  277.         /*******************************************************
  278.          *      微信商户订单号 - 最长28位字符串
  279.          *******************************************************/
  280.          
  281.         public function wxMchBillno($mchid = NULL) {
  282.             if(is_null($mchid)){
  283.                 if(self::mchid == "" || is_null(self::mchid)){
  284.                     $mchid = time();
  285.                 }
  286.                 else{
  287.                     $mchid = self::mchid;
  288.                 }
  289.             }
  290.             else{
  291.                 $mchid = substr(addslashes($mchid),0,10);
  292.             }
  293.             return date("Ymd",time()).time().$mchid;
  294.         }
  295.          
  296.         /*******************************************************
  297.          *      微信格式化数组变成参数格式 - 支持url加密
  298.          *******************************************************/      
  299.          
  300.         public function wxSetParam($parameters){
  301.             if(is_array($parameters) && !empty($parameters)){
  302.                 $this->parameters = $parameters;
  303.                 return $this->parameters;
  304.             }
  305.             else{
  306.                 return array();
  307.             }
  308.         }
  309.          
  310.         /*******************************************************
  311.          *      微信格式化数组变成参数格式 - 支持url加密
  312.          *******************************************************/
  313.          
  314.     public function wxFormatArray($parameters = NULL, $urlencode = FALSE){
  315.             if(is_null($parameters)){
  316.                 $parameters = $this->parameters;
  317.             }
  318.             $restr = "";//初始化空
  319.             ksort($parameters);//排序参数
  320.             foreach ($parameters as $k => $v){//循环定制参数
  321.                 if (null != $v && "null" != $v && "sign" != $k) {
  322.                     if($urlencode){//如果参数需要增加URL加密就增加,不需要则不需要
  323.                         $v = urlencode($v);
  324.                     }
  325.                     $restr .= $k . "=" . $v . "&";//返回完整字符串
  326.                 }
  327.             }
  328.             if (strlen($restr) > 0) {//如果存在数据则将最后“&”删除
  329.                 $restr = substr($restr, 0, strlen($restr)-1);
  330.             }
  331.             return $restr;//返回字符串
  332.     }
  333.          
  334.         /*******************************************************
  335.          *      微信MD5签名生成器 - 需要将参数数组转化成为字符串[wxFormatArray方法]
  336.          *******************************************************/
  337.         public function wxMd5Sign($content, $privatekey){
  338.         try {
  339.                 if (is_null($privatekey)) {
  340.                     throw new Exception("财付通签名key不能为空!");
  341.                 }
  342.                 if (is_null($content)) {
  343.                     throw new Exception("财付通签名内容不能为空");
  344.                 }
  345.                 $signStr = $content . "&key=" . $privatekey;
  346.                 return strtoupper(md5($signStr));
  347.             }
  348.             catch (Exception $e)
  349.             {
  350.                 die($e->getMessage());
  351.             }
  352.         }
  353.          
  354.         /*******************************************************
  355.          *      微信Sha1签名生成器 - 需要将参数数组转化成为字符串[wxFormatArray方法]
  356.          *******************************************************/
  357.         public function wxSha1Sign($content){
  358.             try {
  359.                 if (is_null($content)) {
  360.                     throw new Exception("签名内容不能为空");
  361.                 }
  362.                 //$signStr = $content;
  363.                 return sha1($content);
  364.             }
  365.             catch (Exception $e)
  366.             {
  367.                 die($e->getMessage());
  368.             }
  369.         }
  370.          
  371.         /*******************************************************
  372.          *      微信jsApi整合方法 - 通过调用此方法获得jsapi数据
  373.          *******************************************************/       
  374.         public function wxJsapiPackage(){
  375.             $jsapi_ticket = $this->wxJsApiTicket();
  376.              
  377.             // 注意 URL 一定要动态获取,不能 hardcode.
  378.             $protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) ? "https://" : "http://";
  379.             $url = $protocol.$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"];
  380.              
  381.             $timestamp = time();
  382.             $nonceStr = $this->wxNonceStr();
  383.              
  384.             $signPackage = array(
  385.               "jsapi_ticket" => $jsapi_ticket,
  386.               "nonceStr"  => $nonceStr,
  387.               "timestamp" => $timestamp,
  388.               "url"       => $url
  389.             ); 
  390.              
  391.             // 这里参数的顺序要按照 key 值 ASCII 码升序排序
  392.             $rawString = "jsapi_ticket=$jsapi_ticket&noncestr=$nonceStr×tamp=$timestamp&url=$url";
  393.              
  394.             //$rawString = $this->wxFormatArray($signPackage);
  395.             $signature = $this->wxSha1Sign($rawString);
  396.              
  397.             $signPackage['signature'] = $signature;
  398.             $signPackage['rawString'] = $rawString;
  399.             $signPackage['appId'] = self::appId;
  400.              
  401.             return $signPackage;
  402.         }
  403.          
  404.          
  405.         /*******************************************************
  406.          *      将数组解析XML - 微信红包接口
  407.          *******************************************************/
  408.         public function wxArrayToXml($parameters = NULL){
  409.             if(is_null($parameters)){
  410.                 $parameters = $this->parameters;
  411.             }
  412.              
  413.             if(!is_array($parameters) || empty($parameters)){
  414.                 die("参数不为数组无法解析");
  415.             }
  416.              
  417.             $xml = "";
  418.             foreach ($arr as $key=>$val)
  419.             {
  420.                 if (is_numeric($val))
  421.                 {
  422.                     $xml.="<".$key.">".$val.""; 
  423.                 }
  424.                 else
  425.                     $xml.="<".$key.">";  
  426.             }
  427.             $xml.="";
  428.             return $xml; 
  429.         }
  430.          
  431.         /*******************************************************
  432.          *      微信卡券:上传LOGO - 需要改写动态功能
  433.          *******************************************************/
  434.         public function wxCardUpdateImg() {
  435.             $wxAccessToken  = $this->wxAccessToken();
  436.             //$data['access_token'] =  $wxAccessToken;
  437.             $data['buffer']     =  '@D:\\workspace\\htdocs\\yky_test\\logo.jpg';
  438.             $url            = "https://api.weixin.qq.com/cgi-bin/media/uploadimg?access_token=".$wxAccessToken;
  439.             $result         = $this->wxHttpsRequest($url,$data);
  440.             $jsoninfo       = json_decode($result, true);
  441.             return $jsoninfo;
  442.             //array(1) { ["url"]=> string(121) "http://mmbiz.qpic.cn/mmbiz/ibuYxPHqeXePNTW4ATKyias1Cf3zTKiars9PFPzF1k5icvXD7xW0kXUAxHDzkEPd9micCMCN0dcTJfW6Tnm93MiaAfRQ/0" } 
  443.         }
  444.          
  445.         /*******************************************************
  446.          *      微信卡券:获取颜色
  447.          *******************************************************/
  448.         public function wxCardColor(){
  449.             $wxAccessToken  = $this->wxAccessToken();
  450.             $url                = "https://api.weixin.qq.com/card/getcolors?access_token=".$wxAccessToken;
  451.             $result         = $this->wxHttpsRequest($url);
  452.             $jsoninfo       = json_decode($result, true);
  453.             return $jsoninfo;
  454.         }
  455.          
  456.         /*******************************************************
  457.          *      微信卡券:创建卡券
  458.          *******************************************************/
  459.         public function wxCardCreated($jsonData) {
  460.             $wxAccessToken  = $this->wxAccessToken();
  461.             $url            = "https://api.weixin.qq.com/card/create?access_token=" . $wxAccessToken;
  462.             $result         = $this->wxHttpsRequest($url,$jsonData);
  463.             $jsoninfo       = json_decode($result, true);
  464.             return $jsoninfo;
  465.         }
  466.          
  467.         /*******************************************************
  468.          *      微信卡券:JSAPI 卡券Package - 基础参数没有附带任何值 - 再生产环境中需要根据实际情况进行修改
  469.          *******************************************************/      
  470.         public function wxCardPackage($cardId){
  471.             $timestamp = time();
  472.             $api_ticket = $this->wxJsApiTicket();
  473.             $cardId = $cardId;
  474.             $arrays = array($api_ticket,$timestamp,$cardId);
  475.             sort($arrays);
  476.             $string = sha1(implode("",$arrays));

  477.             $resultArray['card_id'] = $cardId;
  478.             $resultArray['card_ext'] = array();
  479.             $resultArray['card_ext']['openid'] = 'oOmn4s9MiwqHSNNvPn0dBtU23toA';
  480.             $resultArray['card_ext']['timestamp'] = $timestamp;
  481.             $resultArray['card_ext']['signature'] = $string;

  482.             return $resultArray;
  483.         }
  484.          
  485.          
  486.     }
复制代码


4. 微信JSAPI 

  1.     require_once 'lib.inc.php';
  2.     $wx = new WxApi();
  3.     //通过网页获取openid
  4.     //if(!isset($_GET['code'])){
  5.     //    header("location:https://open.weixin.qq.com/connect/oauth2/authorize?appid=".WxApi::appId."&redirect_uri=http://".$_SERVER['SERVER_NAME'].$_SERVER['PHP_SELF']."&response_type=code&scope=snsapi_base&state=1#wechat_redirect");
  6.     //}
  7.     //else{
  8.     //    $CODE =  $_GET['code'];
  9.     //    $Info = $wx->wxOauthAccessToken($CODE);
  10.         //print_r($Info);
  11.     //    $openId = $Info['openid'];    
  12.     //}
  13.     ////////////////////////////////////////////

  14.     $signPackage = $wx->wxJsapiPackage();
  15.     //print_r($signPackage);
  16.     $kqInfo = $wx->wxCardPackage("");
  17.     $listInfo = $wx->wxCardListPackage();
  18. ?>

  19.    
  20.         JSAPI接口测试
  21.         
  22.         
  23.          
  24.         
  25.         
  26.    
  27.    
  28.         

  29.             

  30.             

  31.             

  32.             

  33.              
  34.             

  •         

  •          
  •         
  •    
  • 复制代码 5. 创建卡券

    1. $kqinfo = array("card" => array());
    2. $kqinfo['card']['card_type'] = 'GENERAL_COUPON';
    3. $kqinfo['card']['general_coupon'] = array('base_info' => array(), 'default_detail' => array());
    4. $kqinfo['card']['general_coupon']['base_info']['logo_url'] = 'URL';
    5. $kqinfo['card']['general_coupon']['base_info']['code_type'] = 'CODE_TYPE_QRCODE';
    6. $kqinfo['card']['general_coupon']['base_info']['brand_name'] = '';
    7. $kqinfo['card']['general_coupon']['base_info']['title'] = '测试卡券';
    8. $kqinfo['card']['general_coupon']['base_info']['color'] = 'Color030';
    9. $kqinfo['card']['general_coupon']['base_info']['notice'] = '测试测试测试';
    10. $kqinfo['card']['general_coupon']['base_info']['description'] = '这是一张优惠券';
    11. $kqinfo['card']['general_coupon']['base_info']['date_info']['type'] = 1;
    12. $kqinfo['card']['general_coupon']['base_info']['date_info']['begin_timestamp'] = time();
    13. $kqinfo['card']['general_coupon']['base_info']['date_info']['end_timestamp'] = time() + 100 * 24 * 3600;
    14. $kqinfo['card']['general_coupon']['base_info']['sku']['quantity'] = 100000;
    15. $kqinfo['card']['general_coupon']['default_detail'] = '测试数据\n测试数据\n测试数据';

    16. //var_dump($kqinfo);
    17. //$kqinfo = json_encode($kqinfo);
    18. $kqinfo = C::enJson($kqinfo);

    19. //print_r( $kqinfo);
    20. //$resultData = $wx->wxCardCreated($kqinfo);
    复制代码

    转载于:https://www.cnblogs.com/SarielTang/p/4501449.html

    你可能感兴趣的:(微信入口绑定,微信事件处理,微信API全部操作)