Home  >  Article  >  Backend Development  >  Use PHP to implement WeChat shake peripheral red envelopes and peripheral red envelopes_PHP tutorial

Use PHP to implement WeChat shake peripheral red envelopes and peripheral red envelopes_PHP tutorial

WBOY
WBOYOriginal
2016-07-12 09:01:36952browse

Using PHP to implement WeChat shake red envelopes, peripheral red envelopes

I recently took on a project, and there was a need to implement the shake red envelope function, and I searched online for a long time , I couldn’t find the source code, so I had no choice but to write it automatically. The editor will share the results of my labor with you for your reference. This article is not well written. I also ask all heroes to provide valuable opinions and learn and make progress together.

The official description of WeChat is as follows

Instructions for shaking the red envelope

Function Description

Shake the surrounding red envelope interface is a red envelope issuing function provided for offline merchants. Users can receive red envelopes issued by merchants by shaking their surroundings in offline places such as merchant stores. Online forwarding and sharing are invalid.

Developers can develop the shake red envelope function through the interface. Features include:
1. You can choose to use the template loading page or the custom Html5 page to call up the WeChat native red envelope page (see the use_template field in the red envelope creation activity for details, 1 is to use the template, 2 is to use the custom Html5 page)
2. To open red envelopes on the native red envelope page, there is no need to send them through public account messages
3. Provide the ability to follow public accounts, users can choose whether to follow them (not valid when sharing fission red envelopes)
4. The completed page can be configured with a jump link, which can jump to other customized Html5 pages of the merchant
5. The same user can only receive one red envelope in a single red envelope event

User-side interaction process

Red envelope component interface calling process

1. Apply for the red envelope interface permission: log in to the backend of Shake and shake surrounding merchants at https://zb.weixin.qq.com, enter developer support, and apply to open the Shake and shake red envelope component interface;
2. Red envelope pre-ordering: Call the WeChat payment API to place a red envelope pre-order, inform the amount of red envelopes to be distributed, the number of people, and generate a red envelope ticket;
3. Create an event and enter red envelope information: Call the API of the Shake Peripheral Platform to create a red envelope activity and enter information, and pass in the red envelope ticket generated when placing an order;
4. Call jsapi to draw a red envelope: Call jsapi to draw a red envelope on the page that is shaken out. The user who wins the red envelope can open the red envelope;
5. When calling the above interface, the public account requirements of the red envelope provider and the red envelope issuing merchant are consistent.

Description:

Red envelope provider: the merchant represented by the parameter wxappid passed in through the red envelope pre-ordering interface
Merchants that issue red envelopes: call the red envelope interface to create red envelope activities, enter red envelope information, and issue red envelope merchant public accounts. So the steps should be ① Create a red envelope activity ② Pre-place an order ③ Enter the red envelope. Find out the previously organized classes and write them down 1. Create an event

Interface Description

Create a red envelope activity, set the validity period of the red envelope activity, red envelope activity switch and other basic information, and return the activity id

Interface calling instructions

Server-side call

http request method: POST
URL: https://api.weixin.qq.com/shakearound/lottery/addlotteryinfo?access_token=ACCESSTOKEN&use_template=1&logo_url=LOGO_URL

Request parameter description

Request example

 Content-Type: application/json Post Body:
{                              
 "title": "title",              
 "desc": "desc",               
 "onoff": 1,                 
 "begin_time": 1428854400,              
 "expire_time": 1428940800,              
 "sponsor_appid": "wxxxxxxxxxxxxxx",
 "total": 10,
 "jump_url": JUMP_URL,   
 "key": "keyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy"              
}

Return data description

Example

 {   
 "errcode":0,   
 "errmsg":"",   
 "lottery_id":"xxxxxxllllll", 
 "page_id":1, 
}
/**
 * 摇一摇红包 创建活动
 * @author jiosen
 */
class addlotteryinfo_pub extends Wxpay_client_pub
{
  var $code;//code码,用以获取openid
  var $openid;//用户的openid
  function __construct($access_token,$logo)
  {
    //设置接口链接
    $this->url = "https://api.weixin.qq.com/shakearound/lottery/addlotteryinfo?access_token=".$access_token."&use_template=1&logo_url=".$logo;
    //设置curl超时时间
    $this->curl_timeout = WxPayConf_pub::CURL_TIMEOUT;
  }
  /**
   * 生成接口参数 json
   */
  function createJson()
  {
    try
    {
      //检测必填参数
      if($this->parameters["title"] == null)
      {
        throw new SDKRuntimeException("缺少抽奖活动名称title!"."<br>");
      }elseif ($this->parameters["desc"] == null ) {
        throw new SDKRuntimeException("缺少抽奖活动描述desc!"."<br>");
      }elseif ($this->parameters["begin_time"] == null) {
        throw new SDKRuntimeException("缺少活动开始时间 begin_time!"."<br>");
      }elseif ($this->parameters["expire_time"] == null) {
        throw new SDKRuntimeException("缺少活动结束时间 expire_time!"."<br>");
      }elseif ($this->parameters["total"] == null) {
        throw new SDKRuntimeException("缺少红包总数total!"."<br>");
      }elseif ($this->parameters["jump_url"] == null) {
        throw new SDKRuntimeException("缺少红包关注跳转连接jump_url!"."<br>");
      }elseif ($this->parameters["key"] == null) {
        throw new SDKRuntimeException("缺少红包key!"."<br>");
      }
      $this->parameters["title"] = urlencode($this->parameters["title"]);
      $this->parameters["desc"] = urlencode($this->parameters["desc"]);
      $this->parameters["onoff"] = '1';//开启活动
      $this->parameters["sponsor_appid"] = WxPayConf_pub::APPID;//公众账号ID
      //var_dump($this->parameters);
      //echo json_encode($this->parameters);
      return json_encode($this->parameters);
    }catch (SDKRuntimeException $e)
    {
      die($e->errorMessage());
    }
  }
  function hbpreorder()
  {
    $data = $this->createJson();
    $result = $this->curl_post($this->url,urldecode($data));
    $result = json_decode($result);
    return $result;
  }
  function curl_post($url,$data)
  {
    $curl = curl_init($url);
    curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 30);
    curl_setopt($curl, CURLOPT_TIMEOUT, 10);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE);
    curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($curl, CURLOPT_POST, 1);//发送一个常规的Post请求
    curl_setopt($curl, CURLOPT_POSTFIELDS, $data);//Post提交的数据包
    $rv = curl_exec($curl);//输出内容
    curl_close($curl);
    return $rv;
  }
  /**
   * 作用:生成可以获得code的url
   */
  function createOauthUrlForCode($redirectUrl)
  {
    $urlObj["appid"] = WxPayConf_pub::APPID;
    $urlObj["redirect_uri"] = "$redirectUrl";
    $urlObj["response_type"] = "code";
    $urlObj["scope"] = "snsapi_base";
    $urlObj["state"] = "STATE"."#wechat_redirect";
    $bizString = $this->formatBizQueryParaMap($urlObj, false);
    return "https://open.weixin.qq.com/connect/oauth2/authorize&#63;".$bizString;
  }
  /**
   * 作用:生成可以获得openid的url
   */
  function createOauthUrlForOpenid()
  {
    $urlObj["appid"] = WxPayConf_pub::APPID;
    $urlObj["secret"] = WxPayConf_pub::APPSECRET;
    $urlObj["code"] = $this->code;
    $urlObj["grant_type"] = "authorization_code";
    $bizString = $this->formatBizQueryParaMap($urlObj, false);
    return "https://api.weixin.qq.com/sns/oauth2/access_token&#63;".$bizString;
  }
  /**
   * 作用:通过curl向微信提交code,以获取openid
   */
  function getOpenid()
  {
    $url = $this->createOauthUrlForOpenid();
    //初始化curl
    $ch = curl_init();
    //设置超时
    curl_setopt($ch, CURLOP_TIMEOUT, $this->curl_timeout);
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,FALSE);
    curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,FALSE);
    curl_setopt($ch, CURLOPT_HEADER, FALSE);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    //运行curl,结果以jason形式返回
    $res = curl_exec($ch);
    curl_close($ch);
    $data = json_decode($res,true);
    $this->openid = $data['openid'];
    return $this->openid;
  }
  /**
   * 作用:设置code
   */
  function setCode($code_)
  {
    $this->code = $code_;
  }
}

Please note that the submitted data is json, not xml

Just make the front-end page


php code

$title = $_POST['title'];
 $file = $_FILES['img'];
 $tools = new Tools(); //这是一个文件上传类 随意选择一样你喜欢的上传方式
 $logo_url = $tools->_upload_award("poll_img", $file, time()); 
 $description = $_POST['description'];
 $total = $_POST['total'];
 $jump_url = $_POST['jump_url'];
 $token = getAccessToken();  //这里是我封装的一个获取 token的 方法 做了时间限制 防止超出调用次数
   $Redpack = new addlotteryinfo_pub($token,SITE_URL.$logo_url);
   $time = time();
   $end = time()+60*24*60*60;//两个月 这里的开始和结束时间我固定了 
  $key = $Redpack->createNoncestr(); //key
 $Redpack->setParameter('title', $title);
//活动标题
$Redpack->setParameter('desc', $description);
//活动描述
$Redpack->setParameter('begin_time', $time);
//开始时间
$Redpack->setParameter('expire_time', $end); 
//结束时间
$Redpack->setParameter('total', $total);
//红包总数
$Redpack->setParameter('jump_url', $jump_url);
//key
$Redpack->setParameter('key', $key);
$result = $Redpack->hbpreorder();
$result = (array)$result; 
if($result['errcode']==0){
   $lottery_id = $result['lottery_id'];
  $page_id = $result['page_id'];
  //这里记得存一下数据库;           
}else{
  //echo '创建活动失败:'.$result['errmsg'];
  //这里是错误提示
}    

2. Pre-order

Interface Description

Set the amount, type, etc. of a single red envelope and generate red envelope information. After the pre-order is placed, jsapi needs to be called within 72 hours to complete the operation of drawing red envelopes. (After the red envelope expires, the funds will be returned to the merchant’s Tenpay account.)

Interface calling instructions

Server-side call

http request method: POST

https://api.mch.weixin.qq.com/mmpaymkttransfers/hbpreorder

POST data format: XML

Merchant certificate required

Request parameter description

请求示例

<xml>   
<sign><![CDATA[E1EE61A91C8E90F299DE6AE075D60A2D]]></sign>   
<mch_billno><![CDATA[0010010404201411170000046545]]></mch_billno>   
<mch_id><![CDATA[10000097]]></mch_id>   
<wxappid><![CDATA[wxcbda96de0b165486]]></wxappid>   
<send_name><![CDATA[send_name]]></send_name>   
<hb_type><![CDATA[NORMAL]]></hb_type>   
<auth_mchid><![CDATA[10000098]]></auth_mchid>   
<auth_appid><![CDATA[wx7777777]]></auth_appid>   
<total_amount><![CDATA[200]]></total_amount>   
<amt_type><![CDATA[ALL_RAND]]></amt_type>   
<total_num><![CDATA[3]]></total_num>   
<wishing><![CDATA[恭喜发财 ]]></wishing>   
<act_name><![CDATA[ 新年红包 ]]></act_name>   
<remark><![CDATA[新年红包 ]]></remark>   
<risk_cntl><![CDATA[NORMAL]]></risk_cntl>   
<nonce_str><![CDATA[50780e0cca98c8c8e814883e5caa672e]]></nonce_str>
</xml>

返回数据说明

以下字段在return_code 和result_code都为SUCCESS的时候有返回

成功示例

 <xml> 
<return_code><![CDATA[SUCCESS]]></return_code> 
<return_msg><![CDATA[发放成功.]]></return_msg> 
<result_code><![CDATA[SUCCESS]]></result_code> 
<err_code><![CDATA[0]]></err_code> 
<err_code_des><![CDATA[发放成功.]]></err_code_des> 
<mch_billno><![CDATA[0010010404201411170000046545]]></mch_billno> 
<mch_id>10010404</mch_id> 
<wxappid><![CDATA[wx6fa7e3bab7e15415]]></wxappid> 
<sp_ticket><![CDATA[0cca98c8c8e814883]]></sp_ticket> 
<total_amount>3</total_amount> 
<detail_id><![CDATA[001001040420141117000004888]]></detail_id> 
<send_time><![CDATA[20150101080000]]></send_time> 
</xml> 

失败示例

 <xml>   
<return_code><![CDATA[FAIL]]></return_code> 
<return_msg><![CDATA[系统繁忙,请稍后再试.]]></return_msg> 
<result_code><![CDATA[FAIL]]></result_code> 
<err_code><![CDATA[268458547]]></err_code> 
<err_code_des><![CDATA[系统繁忙,请稍后再试.]]></err_code_des> 
<mch_billno><![CDATA[0010010404201411170000046542]]></mch_billno>     
<mch_id>10010404</mch_id> 
<wxappid><![CDATA[wx6fa7e3bab7e15415]]></wxappid>  
<total_amount>3</total_amount> 
</xml> 
/**
 * 摇一摇红包预下单 
 * @author jiosen
 */
class Yhb_pub extends Wxpay_client_pub
{
  var $code;//code码,用以获取openid
  var $openid;//用户的openid
  function __construct()
  {
    //设置接口链接
    $this->url = "https://api.mch.weixin.qq.com/mmpaymkttransfers/hbpreorder";
    //设置curl超时时间
    $this->curl_timeout = WxPayConf_pub::CURL_TIMEOUT;
  }
  /**
   * 生成接口参数xml
   */
  function createXml()
  {
    try
    {
      //检测必填参数
      if($this->parameters["mch_billno"] == null)
      {
        throw new SDKRuntimeException("缺少发红包接口必填参数mch_billno!"."<br>");
      }elseif ($this->parameters["send_name"] == null ) {
        throw new SDKRuntimeException("缺少发红包接口必填参数send_name!"."<br>");
      }elseif ($this->parameters["total_amount"] == null) {
        throw new SDKRuntimeException("缺少发红包接口必填参数total_amount!"."<br>");
      }elseif ($this->parameters["total_num"] == null) {
        throw new SDKRuntimeException("缺少发红包接口必填参数total_num!"."<br>");
      }elseif ($this->parameters["wishing"] == null) {
        throw new SDKRuntimeException("缺少发红包接口必填参数wishing!"."<br>");
      }elseif ($this->parameters["act_name"] == null) {
        throw new SDKRuntimeException("缺少发红包接口必填参数act_name!"."<br>");
      }elseif ($this->parameters["remark"] == null) {
        throw new SDKRuntimeException("缺少发红包接口必填参数remark!"."<br>");
      }
      $this->parameters["wxappid"] = WxPayConf_pub::APPID;//公众账号ID
      $this->parameters["mch_id"] = WxPayConf_pub::MCHID;//商户号
      $this->parameters["nonce_str"] = $this->createNoncestr();//随机字符串
      //$this->parameters["re_openid"] = $this->openid;//用户openid
      $this->parameters["hb_type"] = 'NORMAL';//红包类型 NORMAL-普通红包;GROUP-裂变红包(可分享红包给好友,无关注公众号能力)。 
      $this->parameters["auth_mchid"] = '1000052601';//摇周边商户号
      $this->parameters["auth_appid"] = 'wxbf42bd79c4391863';//摇周边 appid
      $this->parameters["risk_cntl"] = 'NORMAL';//风控设置
      $this->parameters["sign"] = $this->getSign($this->parameters);//签名
      return $this->arrayToXml($this->parameters);
    }catch (SDKRuntimeException $e)
    {
      die($e->errorMessage());
    }
  }
  function hbpreorder()
  {
    $this->postXmlSSL();
    $this->result = $this->xmlToArray($this->response);
    return $this->result;
  }
  /**
   * 作用:生成可以获得code的url
   */
  function createOauthUrlForCode($redirectUrl)
  {
    $urlObj["appid"] = WxPayConf_pub::APPID;
    $urlObj["redirect_uri"] = "$redirectUrl";
    $urlObj["response_type"] = "code";
    $urlObj["scope"] = "snsapi_base";
    $urlObj["state"] = "STATE"."#wechat_redirect";
    $bizString = $this->formatBizQueryParaMap($urlObj, false);
    return "https://open.weixin.qq.com/connect/oauth2/authorize&#63;".$bizString;
  }
  /**
   * 作用:生成可以获得openid的url
   */
  function createOauthUrlForOpenid()
  {
    $urlObj["appid"] = WxPayConf_pub::APPID;
    $urlObj["secret"] = WxPayConf_pub::APPSECRET;
    $urlObj["code"] = $this->code;
    $urlObj["grant_type"] = "authorization_code";
    $bizString = $this->formatBizQueryParaMap($urlObj, false);
    return "https://api.weixin.qq.com/sns/oauth2/access_token&#63;".$bizString;
  }
  /**
   * 作用:通过curl向微信提交code,以获取openid
   */
  function getOpenid()
  {
    $url = $this->createOauthUrlForOpenid();
    //初始化curl
    $ch = curl_init();
    //设置超时
    curl_setopt($ch, CURLOP_TIMEOUT, $this->curl_timeout);
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,FALSE);
    curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,FALSE);
    curl_setopt($ch, CURLOPT_HEADER, FALSE);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    //运行curl,结果以jason形式返回
    $res = curl_exec($ch);
    curl_close($ch);
    //取出openid
    $data = json_decode($res,true);
    $this->openid = $data['openid'];
    return $this->openid;
  }
  /**
   * 作用:设置code
   */
  function setCode($code_)
  {
    $this->code = $code_;
  }
}

 这里需要注意的是  auth_mchid 和 auth_appid 要填摇周边平台给出的appid 和商户号
 调用 (这里不贴前端页面了)

$Redpack = new \Yhb_pub(); 
 $Redpack->setParameter('mch_billno', WxPayConf_pub::MCHID.date('YmdHis').rand(1000, 9999));
 //商户名称
 $Redpack->setParameter('send_name', "商户名称");
 //付款金额
 $Redpack->setParameter('total_amount', 100); //单位分
 //红包发放总人数
 $Redpack->setParameter('amt_type', "ALL_RAND");
 $Redpack->setParameter('total_num', 1);
 //红包祝福语
 $Redpack->setParameter('wishing', "摇一摇送红包");
 //活动名称
 $Redpack->setParameter('act_name', "摇一摇送红包");
 //备注
 $Redpack->setParameter('remark', "摇一摇送红包 备注");
 $result = $Redpack->hbpreorder();
 if($result[''])

 3.录入红包

接口说明

在调用"创建红包活动"接口之后,调用此接口录入红包信息。注意,此接口每次调用,都会向某个活动新增一批红包信息,如果红包数少于100 个,请通过一次调用添加所有红包信息。如果红包数大于100,可以多次调用接口添加。请注意确保多次录入的红包ticket总的数目不大于创建该红包活动 时设置的total值。

接口调用说明

 服务器端调用

http请求方式: POST
URL:https://api.weixin.qq.com/shakearound/lottery/setprizebucket?access_token=ACCESSTOKEN

请求参数说明


POST BODY:JSON格式的结构体

请求示例

 Content-Type: application/json Post Body:
{   
"lottery_id": "xxxxxxllllll",   
"mchid": "10000098",   
"sponsor_appid": "wx8888888888888888",  
"prize_info_list": [     
   {      
  "ticket": "v1|ZiPs2l0hpMBp3uwGI1rwp45vOdz/V/zQ/00jP9MeWT+e47/q1FJjwCIP34frSjzOxAEzJ7k2CtAg1pmcShvkChBWqbThxPm6MBuzceoHtj79iHuHaEn0WAO+j4sXnXnbGswFOlDYWg1ngvrRYnCY3g=="
   },
   {
  "ticket": "v1|fOhNUTap1oepSm5ap0hx1gmATM\/QX\/xn3sZWL7K+5Z10sbV5\/mZ4SwxwxbK2SPV32eLRvjd4ww1G3H5a+ypqRrySi+4oo97y63KoEQbRCPjbkyQBY8AYVyvD40V2b9slTQCm2igGY98mPe+VxZiayQ=="
   }
  ]
}


返回数据说明

示例

 {   
"errcode":0,   
"errmsg":"",   
"repeat_ticket_list":[     
   {      
"ticket": "v1|ZiPs2l0hpMBp3uwGI1rwp45vOdz/V/zQ/00jP9MeWT+e47/q1FJjwCIP34frSjzOxAEzJ7k2CtAg1pmcShvkChBWqbThxPm6MBuzceoHtj79iHuHaEn0WAO+j4sXnXnbGswFOlDYWg1ngvrRYnCY3g=="            
   },
   {
"ticket":"v1|ZiPs2l0zzXCsdfwe45dxCdHiukOdz/V/zQ/89xcnC5XnT+e47/q1FJjwCO4frSjzOxAEzJ7k2CtAg1pmcShvkChBWzc45dDGC32Dcxx4DGxczjDCGsdjowe9iHuaEn0WAO+GswFOlDYWg1ngvrRYnCY3g=="     }   
   } 
 ], 
"success_num":100 
}

/**
 * 摇一摇红包 录入红包
 * @author jiosen
 */
class lottery_pub extends Wxpay_client_pub
{
  var $code;//code码,用以获取openid
  var $openid;//用户的openid
  function __construct($access_token)
  {
    //设置接口链接
    $this->url = "https://api.weixin.qq.com/shakearound/lottery/setprizebucket&#63;access_token=".$access_token;
    //设置curl超时时间
    $this->curl_timeout = WxPayConf_pub::CURL_TIMEOUT;
  }
  /**
   * 生成接口参数 json
   */
  function createJson()
  {
    try
    {
      //检测必填参数
      if($this->parameters["lottery_id"] == null)
      {
        throw new SDKRuntimeException("缺少抽奖活动id lottery_id !"."<br>");
      }else if(empty($this->parameters["prize_info_list"])){
        throw new SDKRuntimeException("缺少抽奖活动红包 prize_info_list !"."<br>");
      }
      $this->parameters["mchid"] = WxPayConf_pub::MCHID;//授权商户号
      $this->parameters["sponsor_appid"] = WxPayConf_pub::APPID;//授权上号appid
      return json_encode($this->parameters);
      //echo json_encode($this->parameters);die;
    }catch (SDKRuntimeException $e)
    {
      die($e->errorMessage());
    }
  }
  function setJsonArray($parameter, $parameterValue){
    $this->parameters[$this->trimString($parameter)] = $parameterValue;
  }
  function hbpreorder()
  {
    $data = $this->createJson();
    $result = $this->curl_post($this->url,$data);
    $result = json_decode($result);
    return $result;
  }
  function curl_post($url,$data)
  {
    $curl = curl_init($url);
    curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 30);
    curl_setopt($curl, CURLOPT_TIMEOUT, 10);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE);
    curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($curl, CURLOPT_POST, 1);//发送一个常规的Post请求
    curl_setopt($curl, CURLOPT_POSTFIELDS, $data);//Post提交的数据包
    $rv = curl_exec($curl);//输出内容
    curl_close($curl);
    return $rv;
  }
  /**
   * 作用:生成可以获得code的url
   */
  function createOauthUrlForCode($redirectUrl)
  {
    $urlObj["appid"] = WxPayConf_pub::APPID;
    $urlObj["redirect_uri"] = "$redirectUrl";
    $urlObj["response_type"] = "code";
    $urlObj["scope"] = "snsapi_base";
    $urlObj["state"] = "STATE"."#wechat_redirect";
    $bizString = $this->formatBizQueryParaMap($urlObj, false);
    return "https://open.weixin.qq.com/connect/oauth2/authorize&#63;".$bizString;
  }
  /**
   * 作用:生成可以获得openid的url
   */
  function createOauthUrlForOpenid()
  {
    $urlObj["appid"] = WxPayConf_pub::APPID;
    $urlObj["secret"] = WxPayConf_pub::APPSECRET;
    $urlObj["code"] = $this->code;
    $urlObj["grant_type"] = "authorization_code";
    $bizString = $this->formatBizQueryParaMap($urlObj, false);
    return "https://api.weixin.qq.com/sns/oauth2/access_token&#63;".$bizString;
  }
  /**
   * 作用:通过curl向微信提交code,以获取openid
   */
  function getOpenid()
  {
    $url = $this->createOauthUrlForOpenid();
    //初始化curl
    $ch = curl_init();
    //设置超时
    curl_setopt($ch, CURLOP_TIMEOUT, $this->curl_timeout);
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,FALSE);
    curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,FALSE);
    curl_setopt($ch, CURLOPT_HEADER, FALSE);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    //运行curl,结果以jason形式返回
    $res = curl_exec($ch);
    curl_close($ch);
    //取出openid
    $data = json_decode($res,true);
    $this->openid = $data['openid'];
    return $this->openid;
  }
  /**
   * 作用:设置code
   */
  function setCode($code_)
  {
    $this->code = $code_;
  }
}

 调用

<br>    $token = getAccessToken();<br>    $Redpack = new \lottery_pub($token);<br>    $lottery_id = ''; //这里读取数据库取出创建活动时返回的 lottery_id
 $Redpack->setParameter('lottery_id', $lottery_id);
  //活动id
  $prize_info_list =array(array('ticket'=>'这里取出预下单返回的sp_ticket'));
  $Redpack->setJsonArray('prize_info_list', $prize_info_list);
  //提交
  $Redpack->hbpreorder();

抢红包页面  php

function getshakeinfo($access_token,$ticket){
    $getshakeinfourl='https://api.weixin.qq.com/shakearound/user/getshakeinfo&#63;access_token='.$access_token;
     $jo=0;
     if($access_token){
      $data=array('ticket' =>$ticket);
      $rd=$this->curl_post($getshakeinfourl,json_encode($data));
      $jo=json_decode($rd);
     }else{
      echo 'access_token null';
     }
     return $jo;
  }
    $ticket=$_GET['ticket'];//获叏设备信息,包括 U UID 、 major 、 minor ,以及距离、 openID 等信息
    $token = getAccessToken();
    $shake=getshakeinfo($token,$ticket);
    $openid=$shake->data->openid;
    $jsapi = new Common_util_pub(); 
    $noncestr = $jsapi->createNoncestr();
    $parameters = array(
        'lottery_id' =>'创建活动时候返回的活动ID',
        'noncestr'=>$noncestr,
        'openid'=>$openid,
      );
    $signStr = $jsapi->formatBizQueryParaMap($parameters,false);
    $key = '创建活动时候的key';
    $signStr=$signStr."&key=".$key;
    $sign = strtoupper(md5($signStr));

 上一步返回的参数填在抢红包html页面

<script type="text/javascript" src="http://zb.weixin.qq.com/app/shakehb/BeaconShakehbJsBridge.js">
</script>
<script type="text/javascript">
  BeaconShakehbJsBridge.ready(function(){
    //alert();
    BeaconShakehbJsBridge.invoke('jumpHongbao',{lottery_id:"{$lottery_id}",noncestr:"{$noncestr}",openid:"{$openid}",sign:"{$sign}"}); 
    });
</script> 

红包绑定用户事件通知     

接口说明

用户进入红包页面时,后台会将一个红包ticket和用户openid绑定,微信会把这个事件推送到开发者填写的URL(登录公众平台进入开发者中心设置)。推送内容包含用户openid,红包活动id,红包ticket、金额以及红包绑定时间。
 注:红包绑定用户不等同于用户领取红包。用户进入红包页面后,有可能不拆红包,但该红包ticket已被绑定,不能再被其他用户绑定,过期后会退回商户财付通账户。

推送XML数据包示例

<xml> 
<ToUserName><![CDATA[toUser]]></ToUserName> 
<FromUserName><![CDATA[fromUser]]></FromUserName> 
<CreateTime>1442824314</CreateTime> 
<MsgType><![CDATA[event]]></MsgType> 
<Event><![CDATA[ShakearoundLotteryBind]]></Event> 
<LotteryId><![CDATA[lotteryid]]></LotteryId> 
<Ticket><![CDATA[ticket]]></Ticket> 
<Money>88</Money> 
<BindTime>1442824313</BindTime> 
</xml> 

 添加事件处理即可

/**
   * 事件处理
   * @param unknown $object
   * @return string
   */
  public function handleEvent($object) {
    // Event是事件类型(subscribe,LOCATION)
    $oneEvent = $object->Event;
    // EventKey是菜单事件的key值
    $key = $object->EventKey;
    // 关注事件
    if ($oneEvent == "subscribe" || $oneEvent == "SCAN") {
      if(!empty($object->Ticket)) {
        //扫码事件
        ....
      } else {
        //关注事件
        ....
      }
    }else if($oneEvent=="ShakearoundLotteryBind"){
      //添加到数据库
    }else if.......其他的事件......
  }

 完毕了.时间比较匆忙 也没时间做优化 大神经过顺便指导12  我好搓的英文基础

下面贴上完整WxPayPubHelper 集成了所有支付类 配置可用

a5973690dce2fbbe07dd6c5488adaa95 $v)
    {
      if($urlencode)
      {
        $v = urlencode($v);
      }
      //$buff .= strtolower($k) . "=" . $v . "&";
      $buff .= $k . "=" . $v . "&";
    }
    $reqPar;
    if (strlen($buff) > 0) 
    {
      $reqPar = substr($buff, 0, strlen($buff)-1);
    }
    return $reqPar;
  }
  /*** Function: generate signature*/
  public function getSign($Obj)
  {
    foreach ($Obj as $k => $v)
    {
      $Parameters[$k] = $v;
    }
    //签名步骤一:按字典序排序参数
    ksort($Parameters);
    $String = $this->formatBizQueryParaMap($Parameters, false);
    //echo '【string1】'.$String.'0b9f73f8e206867bd1f5dc5957dbcb38';
    //签名步骤二:在string后加入KEY
    $String = $String."&key=".WxPayConf_pub::KEY;
    //echo "【string2】".$String."0b9f73f8e206867bd1f5dc5957dbcb38";
    //签名步骤三:MD5加密
    $String = md5($String);
    //echo "【string3】 ".$String."0b9f73f8e206867bd1f5dc5957dbcb38";
    //签名步骤四:所有字符转为大写
    $result_ = strtoupper($String);
    //echo "【result】 ".$result_."0b9f73f8e206867bd1f5dc5957dbcb38";
    return $result_;
  }
  /*** Function: array to xml*/
  function arrayToXml($arr)
  {
    $xml = "b2a0af5a8fd26276da50279a1c63a57a";
    foreach ($arr as $key=>$val)
    {
       if (is_numeric($val))
       {
        $xml.="d34df75372f4a53fbb2bbc0f061a0b1b".$val."a0cd70d8ea9baf105402a6df3ab5b85c"; 
       }
       else
        $xml.="d34df75372f4a53fbb2bbc0f061a0b1bd7e63cc4f398fe1976f35a349193d004a0cd70d8ea9baf105402a6df3ab5b85c"; 
    }
    $xml.="21118965b89073f60271ef4a3b5d3c58";
    return $xml; 
  }
  /*** Function: Convert xml to array*/
  public function xmlToArray($xml)
  {    
    //将XML转为array    
    $array_data = json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true);   
    return $array_data;
  }
  /*** Function: Submit xml to the corresponding interface url in post mode*/
  public function postXmlCurl($xml,$url,$second=30)
  {    
    //初始化curl    
    $ch = curl_init();
    //设置超时
    curl_setopt($ch, CURLOP_TIMEOUT, $second);
    //这里设置代理,如果有的话
    //curl_setopt($ch,CURLOPT_PROXY, '8.8.8.8');
    //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);
    //设置header
    curl_setopt($ch, CURLOPT_HEADER, FALSE);
    //要求结果为字符串且输出到屏幕上
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    //post提交方式
    curl_setopt($ch, CURLOPT_POST, TRUE);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);
    //运行curl
    $data = curl_exec($ch);
    curl_close($ch);
    //返回结果
    if($data)
    {
      curl_close($ch);
      return $data;
    }else
    {
      $error = curl_errno($ch);
      echo "curl error, error code: $error"."0c6dc11e160d3b678d68754cc175188a";
      echo "1281abeff31677ff4950a1acb7313d89Error cause query5db79b134e9f6b82c0b36e0489ee08ed0b9f73f8e206867bd1f5dc5957dbcb38";
      curl_close($ch);
      return false;
    }
  }
  /*** Function: Use the certificate to submit xml to the corresponding interface url in post mode*/
  function postXmlSSLCurl($xml,$url,$second=30)
  {
    $ch = curl_init();
    //timeout
    curl_setopt($ch,CURLOPT_TIMEOUT,$second);
    //Set the proxy here, if any
    //curl_setopt($ch,CURLOPT_PROXY, '8.8.8.8');
    //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);
    //Set header
    curl_setopt($ch,CURLOPT_HEADER,FALSE);
    //Require the result to be a string and output it to the screen
    curl_setopt($ch,CURLOPT_RETURNTRANSFER,TRUE);
    //Set certificate
    //Use certificate: cert and key belong to two .pem files respectively
    //The default format is PEM, which can be commented
// curl_setopt($ch,CURLOPT_SSLCERTTYPE,'PEM');
// curl_setopt($ch,CURLOPT_SSLCERT,WxPayConf_pub::SSLCERT_PATH );
// //The default format is PEM, which can be commented
// curl_setopt($ch,CURLOPT_SSLKEYTYPE,'PEM');
// curl_setopt($ch,CURLOPT_SSLKEY, WxPayConf_pub::SSLKEY_PATH);
    curl_setopt($ch, CURLOPT_SSLCERT,WxPayConf_pub::SSLCERT_PATH);
    curl_setopt($ch, CURLOPT_SSLKEY,WxPayConf_pub::SSLKEY_PATH);
    curl_setopt($ch, CURLOPT_CAINFO, WxPayConf_pub::SSLCA_PATH); // CA root certificate (used to verify whether the website certificate is issued by the CA)
    //post submission method
    curl_setopt($ch,CURLOPT_POST, true);
    curl_setopt($ch,CURLOPT_POSTFIELDS,$xml);
    $data = curl_exec($ch);
    //return result
    if($data){
      curl_close($ch);
      return $data;
    }
    else {
      $error = curl_errno($ch);
      echo "curl error, error code: $error"."0c6dc11e160d3b678d68754cc175188a";
      echo "1281abeff31677ff4950a1acb7313d89Error cause query5db79b134e9f6b82c0b36e0489ee08ed0b9f73f8e206867bd1f5dc5957dbcb38";
      curl_close($ch);
      return false;
    }
  }
  /*** Function: Print array*/
  function printErr($wording='',$err='')
  {
    print_r('e03b848252eb9375d56be284e690e873');
    echo $wording."0b9f73f8e206867bd1f5dc5957dbcb38";
    var_dump($err);
    print_r('bc5574f69a0cba105bc93bd3dc13c4ec');
  }
}
/*** Base class of request interface*/
class Wxpay_client_pub extends Common_util_pub
{
  var $parameters;//Request parameters, type is associative array
  public $response; //Response returned by WeChat
  public $result;//Return parameter, type is associative array
  var $url;//interface link
  var $curl_timeout;//curl timeout time
  /*** Function: Set request parameters*/
  function setParameter($parameter, $parameterValue)
  {
    $this->parameters[$this->trimString($parameter)] = $this->trimString($parameterValue);
  }
  /*** Function: Set standard request parameters, generate signatures, and generate interface parameter xml*/
  function createXml()
  {
    $this->parameters["appid"] = WxPayConf_pub::APPID;//Public account ID
    $this->parameters["mch_id"] = WxPayConf_pub::MCHID;//Merchant ID
    $this->parameters["nonce_str"] = $this->createNoncestr();//Random string
    $this->parameters["sign"] = $this->getSign($this->parameters);//Signature
    return $this->arrayToXml($this->parameters);
  }
  /*** Function: post request xml*/
  function postXml()
  {
    $xml = $this->createXml();
    $this->response = $this->postXmlCurl($xml,$this->url,$this->curl_timeout);
    return $this->response;
  }
  /*** Function: Use certificate post to request xml*/
  function postXmlSSL()
  {
    $xml = $this->createXml();
    $this->response = $this->postXmlSSLCurl($xml,$this->url,$this->curl_timeout);
    return $this->response;
  }
  /*** Function: Get results, certificate is not used by default*/
  function getResult()
  {
    $this->postXml();
    $this->result = $this->xmlToArray($this->response);
    return $this->result;
  }
}
/*** Unified payment interface class*/
class UnifiedOrder_pub extends Wxpay_client_pub
{
  function__construct()
  {
    //Set interface link
    $this->url = "https://api.mch.weixin.qq.com/pay/unifiedorder";
    //Set curl timeout
    $this->curl_timeout = WxPayConf_pub::CURL_TIMEOUT;
  }
  /*** Generate interface parameter xml*/
  function createXml()
  {
    try
    {
      //Detect required parameters
      if($this->parameters["out_trade_no"] == null)
      {
        throw new SDKRuntimeException("The required parameter out_trade_no of the unified payment interface is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif($this->parameters["body"] == null){
        throw new SDKRuntimeException("The required parameter body of the unified payment interface is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif ($this->parameters["total_fee"] == null ) {
        throw new SDKRuntimeException("The required parameter total_fee of the unified payment interface is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif ($this->parameters["notify_url"] == null) {
        throw new SDKRuntimeException("Missing the required parameter notify_url of the unified payment interface!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif ($this->parameters["trade_type"] == null) {
        throw new SDKRuntimeException("Missing the required parameter trade_type of the unified payment interface!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif ($this->parameters["trade_type"] == "JSAPI" &&
        $this->parameters["openid"] == NULL){
        throw new SDKRuntimeException("In the unified payment interface, the required parameter openid is missing! When trade_type is JSAPI, openid is a required parameter!"."0c6dc11e160d3b678d68754cc175188a");
      }
      $this->parameters["appid"] = WxPayConf_pub::APPID;//Public account ID
      $this->parameters["mch_id"] = WxPayConf_pub::MCHID;//Merchant ID
      $this->parameters["spbill_create_ip"] = $_SERVER['REMOTE_ADDR'];//Terminal ip
      $this->parameters["nonce_str"] = $this->createNoncestr();//Random string
      $this->parameters["sign"] = $this->getSign($this->parameters);//Signature
      return $this->arrayToXml($this->parameters);
    }catch (SDKRuntimeException $e)
    {
      die($e->errorMessage());
    }
  }
  /*** Get prepay_id*/
  function getPrepayId()
  {
    $this->postXml();
    $this->result = $this->xmlToArray($this->response);
    $prepay_id = $this->result["prepay_id"];
    return $prepay_id;
  }
}
/*** Order query interface*/
class OrderQuery_pub extends Wxpay_client_pub
{
  function__construct()
  {
    //Set interface link
    $this->url = "https://api.mch.weixin.qq.com/pay/orderquery";
    //Set curl timeout
    $this->curl_timeout = WxPayConf_pub::CURL_TIMEOUT;
  }
  /*** Generate interface parameter xml*/
  function createXml()
  {
    try
    {
      //Detect required parameters
      if($this->parameters["out_trade_no"] == null &&
        $this->parameters["transaction_id"] == null)
      {
        throw new SDKRuntimeException("In the order query interface, fill in at least one out_trade_no and transaction_id!"."0c6dc11e160d3b678d68754cc175188a");
      }
      $this->parameters["appid"] = WxPayConf_pub::APPID;//Public account ID
      $this->parameters["mch_id"] = WxPayConf_pub::MCHID;//Merchant ID
      $this->parameters["nonce_str"] = $this->createNoncestr();//Random string
      $this->parameters["sign"] = $this->getSign($this->parameters);//Signature
      return $this->arrayToXml($this->parameters);
    }catch (SDKRuntimeException $e)
    {
      die($e->errorMessage());
    }
  }
}
/*** Refund application interface*/
class Refund_pub extends Wxpay_client_pub
{
  function __construct() {
    //Set interface link
    $this->url = "https://api.mch.weixin.qq.com/secapi/pay/refund";
    //Set curl timeout
    $this->curl_timeout = WxPayConf_pub::CURL_TIMEOUT;
  }
  /*** Generate interface parameter xml*/
  function createXml()
  {
    try
    {
      //Detect required parameters
      if($this->parameters["out_trade_no"] == null && $this->parameters["transaction_id"] == null) {
        throw new SDKRuntimeException("In the refund application interface, fill in at least one out_trade_no and transaction_id!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif($this->parameters["out_refund_no"] == null){
        throw new SDKRuntimeException("In the refund application interface, the required parameter out_refund_no is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif($this->parameters["total_fee"] == null){
        throw new SDKRuntimeException("In the refund application interface, the required parameter total_fee is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif($this->parameters["refund_fee"] == null){
        throw new SDKRuntimeException("In the refund application interface, the required parameter refund_fee is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif($this->parameters["op_user_id"] == null){
        throw new SDKRuntimeException("In the refund application interface, the required parameter op_user_id is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }
      $this->parameters["appid"] = WxPayConf_pub::APPID;//Public account ID
      $this->parameters["mch_id"] = WxPayConf_pub::MCHID;//Merchant ID
      $this->parameters["nonce_str"] = $this->createNoncestr();//Random string
      $this->parameters["sign"] = $this->getSign($this->parameters);//Signature
      return $this->arrayToXml($this->parameters);
    }catch (SDKRuntimeException $e)
    {
      die($e->errorMessage());
    }
  }
  /*** Function: Get results and communicate using certificates*/
  function getResult()
  {
    $this->postXmlSSL();
    $this->result = $this->xmlToArray($this->response);
    return $this->result;
  }
}
/*** Refund query interface*/
class RefundQuery_pub extends Wxpay_client_pub
{
  function __construct() {
    //Set interface link
    $this->url = "https://api.mch.weixin.qq.com/pay/refundquery";
    //Set curl timeout
    $this->curl_timeout = WxPayConf_pub::CURL_TIMEOUT;
  }
  /*** Generate interface parameter xml*/
  function createXml()
  {
    try
    {
      if($this->parameters["out_refund_no"] == null &&
        $this->parameters["out_trade_no"] == null &&
        $this->parameters["transaction_id"] == null &&
        $this->parameters["refund_id "] == null)
      {
        throw new SDKRuntimeException("In the refund query interface, one of the four parameters out_refund_no, out_trade_no, transaction_id, and refund_id is required!"."0c6dc11e160d3b678d68754cc175188a");
      }
      $this->parameters["appid"] = WxPayConf_pub::APPID;//Public account ID
      $this->parameters["mch_id"] = WxPayConf_pub::MCHID;//Merchant ID
      $this->parameters["nonce_str"] = $this->createNoncestr();//Random string
      $this->parameters["sign"] = $this->getSign($this->parameters);//Signature
      return $this->arrayToXml($this->parameters);
    }catch (SDKRuntimeException $e)
    {
      die($e->errorMessage());
    }
  }
  /*** Function: Get results and communicate using certificates*/
  function getResult()
  {
    $this->postXmlSSL();
    $this->result = $this->xmlToArray($this->response);
    return $this->result;
  }
}
/*** Billing interface*/
class DownloadBill_pub extends Wxpay_client_pub
{
  function__construct()
  {
    //Set interface link
    $this->url = "https://api.mch.weixin.qq.com/pay/downloadbill";
    //Set curl timeout
    $this->curl_timeout = WxPayConf_pub::CURL_TIMEOUT;
  }
  /*** Generate interface parameter xml*/
  function createXml()
  {
    try
    {
      if($this->parameters["bill_date"] == null )
      {
        throw new SDKRuntimeException("In the statement interface, the required parameter bill_date is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }
      $this->parameters["appid"] = WxPayConf_pub::APPID;//Public account ID
      $this->parameters["mch_id"] = WxPayConf_pub::MCHID;//Merchant ID
      $this->parameters["nonce_str"] = $this->createNoncestr();//Random string
      $this->parameters["sign"] = $this->getSign($this->parameters);//Signature
      return $this->arrayToXml($this->parameters);
    }catch (SDKRuntimeException $e)
    {
      die($e->errorMessage());
    }
  }
  /*** Function: Get results, certificate is not used by default*/
  function getResult()
  {
    $this->postXml();
    $this->result = $this->xmlToArray($this->result_xml);
    return $this->result;
  }
}
/*** Short link conversion interface*/
class ShortUrl_pub extends Wxpay_client_pub
{
  function__construct()
  {
    //Set interface link
    $this->url = "https://api.mch.weixin.qq.com/tools/shorturl";
    //Set curl timeout
    $this->curl_timeout = WxPayConf_pub::CURL_TIMEOUT;
  }
  /*** Generate interface parameter xml*/
  function createXml()
  {
    try
    {
      if($this->parameters["long_url"] == null )
      {
        throw new SDKRuntimeException("In the short link conversion interface, the required parameter long_url is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }
      $this->parameters["appid"] = WxPayConf_pub::APPID;//Public account ID
      $this->parameters["mch_id"] = WxPayConf_pub::MCHID;//Merchant ID
      $this->parameters["nonce_str"] = $this->createNoncestr();//Random string
      $this->parameters["sign"] = $this->getSign($this->parameters);//Signature
      return $this->arrayToXml($this->parameters);
    }catch (SDKRuntimeException $e)
    {
      die($e->errorMessage());
    }
  }
  /*** Get prepay_id*/
  function getShortUrl()
  {
    $this->postXml();
    $prepay_id = $this->result["short_url"];
    return $prepay_id;
  }
}
/***Responsive interface base class*/
class Wxpay_server_pub extends Common_util_pub
{
  public $data;//received data, type is associative array
  var $returnParameters; //Return parameters, type is associative array
  /*** Convert WeChat's request xml into an associative array to facilitate data processing*/
  function saveData($xml)
  {
    $this->data = $this->xmlToArray($xml);
  }
  function checkSign()
  {
    $tmpData = $this->data;
    unset($tmpData['sign']);
    $sign = $this->getSign($tmpData);//Local signature
    if ($this->data['sign'] == $sign) {
      return TRUE;
    }
    return FALSE;
  }
  /*** Get WeChat request data*/
  function getData()
  {
    return $this->data;
  }
  /*** Set the xml data returned to WeChat*/
  function setReturnParameter($parameter, $parameterValue)
  {
    $this->returnParameters[$this->trimString($parameter)] = $this->trimString($parameterValue);
  }
  /*** Generate interface parameter xml*/
  function createXml()
  {
    return $this->arrayToXml($this->returnParameters);
  }
  /*** Return xml data to WeChat*/
  function returnXml()
  {
    $returnXml = $this->createXml();
    return $returnXml;
  }
}
/*** Universal notification interface*/
class Notify_pub extends Wxpay_server_pub
{
}
/*** Request merchants to obtain product information interface*/
class NativeCall_pub extends Wxpay_server_pub
{
  /*** Generate interface parameter xml*/
  function createXml()
  {
    if($this->returnParameters["return_code"] == "SUCCESS"){
      $this->returnParameters["appid"] = WxPayConf_pub::APPID;//Public account ID
      $this->returnParameters["mch_id"] = WxPayConf_pub::MCHID;//Merchant ID
      $this->returnParameters["nonce_str"] = $this->createNoncestr();//Random string
      $this->returnParameters["sign"] = $this->getSign($this->returnParameters);//Signature
    }
    return $this->arrayToXml($this->returnParameters);
  }
  /*** Get product_id*/
  function getProductId()
  {
    $product_id = $this->data["product_id"];
    return $product_id;
  }
}
/*** Static link QR code*/
class NativeLink_pub extends Common_util_pub
{
  var $parameters; //Static link parameters
  var $url;//Static link
  function__construct()
  {
  }
  /*** Set parameters*/
  function setParameter($parameter, $parameterValue)
  {
    $this->parameters[$this->trimString($parameter)] = $this->trimString($parameterValue);
  }
  /*** Generate Native payment link QR code*/
  function createLink()
  {
    try
    {
      if($this->parameters["product_id"] == null)
      {
        throw new SDKRuntimeException("The required parameter product_id of the Native payment QR code link is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }
      $this->parameters["appid"] = WxPayConf_pub::APPID;//Public account ID
      $this->parameters["mch_id"] = WxPayConf_pub::MCHID;//Merchant ID
      $time_stamp = time();
      $this->parameters["time_stamp"] = "$time_stamp";//Timestamp
      $this->parameters["nonce_str"] = $this->createNoncestr();//Random string
      $this->parameters["sign"] = $this->getSign($this->parameters);//Signature
      $bizString = $this->formatBizQueryParaMap($this->parameters, false);
      $this->url = "weixin://wxpay/bizpayurl?".$bizString;
    }catch (SDKRuntimeException $e)
    {
      die($e->errorMessage());
    }
  }
  /*** Return link*/
  function getUrl()
  {
    $this->createLink();
    return $this->url;
  }
}
/*** JSAPI payment - H5 web page calls up the payment interface*/
class JsApi_pub extends Common_util_pub
{
  var $code;//code code to get openid
  var $openid;//user’s openid
  var $parameters;//jsapi parameters, the format is json
  var $prepay_id;//Prepayment id obtained using the unified payment interface
  var $curl_timeout;//curl timeout time
  function__construct()
  {
    //Set curl timeout
    $this->curl_timeout = WxPayConf_pub::CURL_TIMEOUT;
  }
  /*** Function: Generate the url where the code can be obtained*/
  function createOauthUrlForCode($redirectUrl)
  {
    $urlObj["appid"] = WxPayConf_pub::APPID;
    $urlObj["redirect_uri"] = "$redirectUrl";
    $urlObj["response_type"] = "code";
    $urlObj["scope"] = "snsapi_base";
    $urlObj["state"] = "STATE"."#wechat_redirect";
    $bizString = $this->formatBizQueryParaMap($urlObj, false);
    return "https://open.weixin.qq.com/connect/oauth2/authorize?".$bizString;
  }
  /*** Function: Generate a url that can obtain openid*/
  function createOauthUrlForOpenid()
  {
    $urlObj["appid"] = WxPayConf_pub::APPID;
    $urlObj["secret"] = WxPayConf_pub::APPSECRET;
    $urlObj["code"] = $this->code;
    $urlObj["grant_type"] = "authorization_code";
    $bizString = $this->formatBizQueryParaMap($urlObj, false);
    return "https://api.weixin.qq.com/sns/oauth2/access_token?".$bizString;
  }
  /*** Function: Submit code to WeChat through curl to obtain openid*/
  function getOpenid()
  {
    $url = $this->createOauthUrlForOpenid();
    //Initialize curl
    $ch = curl_init();
    //Set timeout
    curl_setopt($ch, CURLOP_TIMEOUT, $this->curl_timeout);
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,FALSE);
    curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,FALSE);
    curl_setopt($ch, CURLOPT_HEADER, FALSE);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    //Run curl and the result is returned in the form of jason
    $res = curl_exec($ch);
    curl_close($ch);
    //Get openid
    $data = json_decode($res,true);
    $this->openid = $data['openid'];
    return $this->openid;
  }
  /*** Function: Set prepay_id*/
  function setPrepayId($prepayId)
  {
    $this->prepay_id = $prepayId;
  }
  /*** Function: Set code*/
  function setCode($code_)
  {
    $this->code = $code_;
  }
  /*** Function: Set the parameters of jsapi*/
  public function getParameters()
  {
    $jsApiObj["appId"] = WxPayConf_pub::APPID;
    $timeStamp = time();
    $jsApiObj["timeStamp"] = "$timeStamp";
    $jsApiObj["nonceStr"] = $this->createNoncestr();
    $jsApiObj["package"] = "prepay_id=$this->prepay_id";
    $jsApiObj["signType"] = "MD5";
    $jsApiObj["paySign"] = $this->getSign($jsApiObj);
    $this->parameters = json_encode($jsApiObj);
    return $this->parameters;
  }
}
/*** Cash red envelope interface
 * @author gaoyl101*/
class Redpack_pub extends Wxpay_client_pub
{
  var $code;//code code to get openid
  var $openid;//user’s openid
  function__construct()
  {
    //Set interface link
    $this->url = "https://api.mch.weixin.qq.com/mmpaymkttransfers/sendredpack";
    //Set curl timeout
    $this->curl_timeout = WxPayConf_pub::CURL_TIMEOUT;
  }
  /*** Generate interface parameter xml*/
  function createXml()
  {
    try
    {
      //Detect required parameters
      if($this->parameters["mch_billno"] == null)
      {
        throw new SDKRuntimeException("The required parameter mch_billno for the red envelope sending interface is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif($this->parameters["nick_name"] == null){
        throw new SDKRuntimeException("Missing the required parameter nick_name for the red envelope sending interface!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif ($this->parameters["send_name"] == null ) {
        throw new SDKRuntimeException("The required parameter send_name for the red envelope sending interface is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif ($this->parameters["total_amount"] == null) {
        throw new SDKRuntimeException("The required parameter total_amount for the red envelope sending interface is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif($this->parameters["min_value"] == null){
        throw new SDKRuntimeException("The required parameter min_value for the red envelope sending interface is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif ($this->parameters["max_value"] == null ) {
        throw new SDKRuntimeException("The max_value parameter required for the red envelope sending interface is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif ($this->parameters["total_num"] == null) {
        throw new SDKRuntimeException("The required parameter total_num for the red envelope sending interface is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif ($this->parameters["wishing"] == null) {
        throw new SDKRuntimeException("Missing the required parameter wishing for the red envelope sending interface!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif ($this->parameters["act_name"] == null) {
        throw new SDKRuntimeException("The required parameter act_name of the red envelope sending interface is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif ($this->parameters["remark"] == null) {
        throw new SDKRuntimeException("Missing the required parameter remark for the red envelope sending interface!"."0c6dc11e160d3b678d68754cc175188a");
      }
      $this->parameters["wxappid"] = WxPayConf_pub::APPID;//Public account ID
      $this->parameters["mch_id"] = WxPayConf_pub::MCHID;//Merchant ID
      $this->parameters["client_ip"] = $_SERVER['REMOTE_ADDR'];//Terminal ip
      $this->parameters["nonce_str"] = $this->createNoncestr();//Random string
      $this->parameters["re_openid"] = $this->parameters["re_openid"];
      //$this->openid;//User openid
      $this->parameters["sign"] = $this->getSign($this->parameters);//Signature
      return $this->arrayToXml($this->parameters);
    }catch (SDKRuntimeException $e)
    {
      die($e->errorMessage());
    }
  }
  function sendRedpack()
  {
    $this->postXmlSSL();
    $this->result = $this->xmlToArray($this->response);
    return $this->result;
  }
  /*** Function: Generate the url where the code can be obtained*/
  function createOauthUrlForCode($redirectUrl)
  {
    $urlObj["appid"] = WxPayConf_pub::APPID;
    $urlObj["redirect_uri"] = "$redirectUrl";
    $urlObj["response_type"] = "code";
    $urlObj["scope"] = "snsapi_base";
    $urlObj["state"] = "STATE"."#wechat_redirect";
    $bizString = $this->formatBizQueryParaMap($urlObj, false);
    return "https://open.weixin.qq.com/connect/oauth2/authorize?".$bizString;
  }
  /*** Function: Generate a url that can obtain openid*/
  function createOauthUrlForOpenid()
  {
    $urlObj["appid"] = WxPayConf_pub::APPID;
    $urlObj["secret"] = WxPayConf_pub::APPSECRET;
    $urlObj["code"] = $this->code;
    $urlObj["grant_type"] = "authorization_code";
    $bizString = $this->formatBizQueryParaMap($urlObj, false);
    return "https://api.weixin.qq.com/sns/oauth2/access_token?".$bizString;
  }
  /*** Function: Submit code to WeChat through curl to obtain openid*/
  function getOpenid()
  {
    $url = $this->createOauthUrlForOpenid();
    //Initialize curl
    $ch = curl_init();
    //Set timeout
    curl_setopt($ch, CURLOP_TIMEOUT, $this->curl_timeout);
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,FALSE);
    curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,FALSE);
    curl_setopt($ch, CURLOPT_HEADER, FALSE);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    //Run curl and the result is returned in the form of jason
    $res = curl_exec($ch);
    curl_close($ch);
    //Get openid
    $data = json_decode($res,true);
    $this->openid = $data['openid'];
    return $this->openid;
  }
  /*** Function: Set code*/
  function setCode($code_)
  {
    $this->code = $code_;
  }
}
/*** Red envelope payment interface
 * @author gaoyl101*/
class Groupredpack_pub extends Wxpay_client_pub
{
  var $code;//code code to get openid
  var $openid;//user’s openid
  function__construct()
  {
    //Set interface link
    $this->url = "https://api.mch.weixin.qq.com/mmpaymkttransfers/sendgroupredpack";
    //Set curl timeout
    $this->curl_timeout = WxPayConf_pub::CURL_TIMEOUT;
  }
  /*** Generate interface parameter xml*/
  function createXml()
  {
    try
    {
      //Detect required parameters
      if($this->parameters["mch_billno"] == null)
      {
        throw new SDKRuntimeException("The required parameter mch_billno for the red envelope sending interface is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif ($this->parameters["send_name"] == null ) {
        throw new SDKRuntimeException("The required parameter send_name for the red envelope sending interface is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif ($this->parameters["total_amount"] == null) {
        throw new SDKRuntimeException("The required parameter total_amount for the red envelope sending interface is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif ($this->parameters["total_num"] == null) {
        throw new SDKRuntimeException("The required parameter total_num for the red envelope sending interface is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif ($this->parameters["amt_type"] == null) {
        throw new SDKRuntimeException("The required parameter amt_type for the red envelope sending interface is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif ($this->parameters["wishing"] == null) {
        throw new SDKRuntimeException("Missing the required parameter wishing for the red envelope sending interface!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif ($this->parameters["act_name"] == null) {
        throw new SDKRuntimeException("The required parameter act_name of the red envelope sending interface is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif ($this->parameters["remark"] == null) {
        throw new SDKRuntimeException("Missing the required parameter remark for the red envelope sending interface!"."0c6dc11e160d3b678d68754cc175188a");
      }
      $this->parameters["wxappid"] = WxPayConf_pub::APPID;//Public account ID
      $this->parameters["mch_id"] = WxPayConf_pub::MCHID;//Merchant ID
      $this->parameters["nonce_str"] = $this->createNoncestr();//Random string
      $this->parameters["re_openid"] = $this->openid;//User openid
      $this->parameters["sign"] = $this->getSign($this->parameters);//Signature
      return $this->arrayToXml($this->parameters);
    }catch (SDKRuntimeException $e)
    {
      die($e->errorMessage());
    }
  }
  function sendRedpack()
  {
    $this->postXmlSSL();
    $this->result = $this->xmlToArray($this->response);
    return $this->result;
  }
  /*** Function: Generate the url where the code can be obtained*/
  function createOauthUrlForCode($redirectUrl)
  {
    $urlObj["appid"] = WxPayConf_pub::APPID;
    $urlObj["redirect_uri"] = "$redirectUrl";
    $urlObj["response_type"] = "code";
    $urlObj["scope"] = "snsapi_base";
    $urlObj["state"] = "STATE"."#wechat_redirect";
    $bizString = $this->formatBizQueryParaMap($urlObj, false);
    return "https://open.weixin.qq.com/connect/oauth2/authorize?".$bizString;
  }
  /*** Function: Generate a url that can obtain openid*/
  function createOauthUrlForOpenid()
  {
    $urlObj["appid"] = WxPayConf_pub::APPID;
    $urlObj["secret"] = WxPayConf_pub::APPSECRET;
    $urlObj["code"] = $this->code;
    $urlObj["grant_type"] = "authorization_code";
    $bizString = $this->formatBizQueryParaMap($urlObj, false);
    return "https://api.weixin.qq.com/sns/oauth2/access_token?".$bizString;
  }
  /*** Function: Submit code to WeChat through curl to obtain openid*/
  function getOpenid()
  {
    $url = $this->createOauthUrlForOpenid();
    //Initialize curl
    $ch = curl_init();
    //Set timeout
    curl_setopt($ch, CURLOP_TIMEOUT, $this->curl_timeout);
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,FALSE);
    curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,FALSE);
    curl_setopt($ch, CURLOPT_HEADER, FALSE);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    //Run curl and the result is returned in the form of jason
    $res = curl_exec($ch);
    curl_close($ch);
    //Get openid
    $data = json_decode($res,true);
    $this->openid = $data['openid'];
    return $this->openid;
  }
  /*** Function: Set code*/
  function setCode($code_)
  {
    $this->code = $code_;
  }
}
/*** Shake the red envelope to place an order
 * @author jiosen*/
class Yhb_pub extends Wxpay_client_pub
{
  var $code;//code code to get openid
  var $openid;//user’s openid
  function__construct()
  {
    //Set interface link
    $this->url = "https://api.mch.weixin.qq.com/mmpaymkttransfers/hbpreorder";
    //Set curl timeout
    $this->curl_timeout = WxPayConf_pub::CURL_TIMEOUT;
  }
  /*** Generate interface parameter xml*/
  function createXml()
  {
    try
    {
      //Detect required parameters
      if($this->parameters["mch_billno"] == null)
      {
        throw new SDKRuntimeException("The required parameter mch_billno for the red envelope sending interface is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif ($this->parameters["send_name"] == null ) {
        throw new SDKRuntimeException("The required parameter send_name for the red envelope sending interface is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif ($this->parameters["total_amount"] == null) {
        throw new SDKRuntimeException("The required parameter total_amount for the red envelope sending interface is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif ($this->parameters["total_num"] == null) {
        throw new SDKRuntimeException("The required parameter total_num for the red envelope sending interface is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif ($this->parameters["wishing"] == null) {
        throw new SDKRuntimeException("Missing the required parameter wishing for the red envelope sending interface!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif ($this->parameters["act_name"] == null) {
        throw new SDKRuntimeException("The required parameter act_name of the red envelope sending interface is missing!"."0c6dc11e160d3b678d68754cc175188a");
      }elseif ($this->parameters["remark"] == null) {
        throw new SDKRuntimeException("Missing the required parameter remark for the red envelope sending interface!"."<br&
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn