使用PHP实现微信摇一摇周边红包

2025-05-29 0 93

最近接了个项目,其中有需求是要实现摇一摇红包功能,在网上搜了好久,都没有找到源码,没办法,只有自动写了,下面小编把我的劳动成果分享给大家供大家参考,本文写的不好,还请各位大侠提出宝贵意见,共同学习进步。

微信官方说明如下

摇一摇红包说明

功能说明

摇一摇周边红包接口是为线下商户提供的发红包功能。用户可以在商家门店等线下场所通过摇一摇周边领取商家发放的红包,在线上转发分享无效。

开发者可通过接口开发摇一摇红包功能,特点包括:
1.可选择使用模板加载页或自定义html5页面调起微信原生红包页面(详见创建红包活动中use_template字段,1为使用模板,2为使用自定义html5页面)
2.原生红包页面拆红包,无需通过公众号消息下发
3.提供关注公众号能力,用户可自行选择是否关注(裂变红包分享时无效)
4.完成页面可配置跳转链接,可跳转商户的其他自定义html5页面
5.同一个用户在单个红包活动中只能领取1次红包

用户侧交互流程

使用PHP实现微信摇一摇周边红包

使用PHP实现微信摇一摇周边红包

红包组件接口调用流程

1. 申请红包接口权限:登录摇一摇周边商户后台https://zb.weixin.qq.com,进入开发者支持,申请开通摇一摇红包组件接口;

2. 红包预下单:调用微信支付的api进行红包预下单,告知需要发放的红包金额,人数,生成红包ticket;
3. 创建活动并录入红包信息:调用摇周边平台的api录入创建红包活动并录入信息,传入预下单时生成的红包ticket;
4. 调用jsapi抽红包:在摇出的页面中通过调用jsapi抽红包,抽中红包的用户可以拆红包
5. 调用以上接口时,红包提供商户和红包发放商户公众号要求一致。

说明:

红包提供商户:红包预下单接口传入的参数wxappid所代表的商户
红包发放商户:调用红包接口创建红包活动、录入红包信息、发放红包的商户公众号所以步骤应该是 ① 创建红包活动 ② 预下单 ③ 录入红包找出来了之前整理的类 在写一下1.创建活动

接口说明

创建红包活动,设置红包活动有效期,红包活动开关等基本信息,返回活动id

接口调用说明

服务器端调用

http请求方式: post
url: https://api.weixin.qq.com/shakearound/lottery/addlotteryinfo?access_token=accesstoken&use_template=1&logo_url=logo_url

请求参数说明

使用PHP实现微信摇一摇周边红包

请求示例

?

1

2

3

4

5

6

7

8

9

10

11

12
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"

}

返回数据说明

使用PHP实现微信摇一摇周边红包

示例

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132
{

"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?".$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?".$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_;

}

}

要注意提交的数据是json 不是xml

前端页面随便做一下

使用PHP实现微信摇一摇周边红包

php 代码

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35
$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.预下单

接口说明

设置单个红包的金额,类型等,生成红包信息。预下单完成后,需要在72小时内调用jsapi完成抽红包的操作。(红包过期失效后,资金会退回到商户财付通帐号。)

接口调用说明

服务器端调用

http请求方式: post

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

post数据格式:xml

需要商户证书

请求参数说明

使用PHP实现微信摇一摇周边红包

使用PHP实现微信摇一摇周边红包

请求示例

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18
<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>

返回数据说明

使用PHP实现微信摇一摇周边红包

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

使用PHP实现微信摇一摇周边红包

成功示例

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14
<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>

失败示例

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127
<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?".$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?".$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 和商户号
调用 (这里不贴前端页面了)

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17
$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

请求参数说明

使用PHP实现微信摇一摇周边红包

post body:json格式的结构体

请求示例

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14
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=="

}

]

}

返回数据说明

使用PHP实现微信摇一摇周边红包

示例

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131
{

"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?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?".$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?".$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_;

}

}

调用

?

1
2

3

4

5

6

7
<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

?

1
2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27
function getshakeinfo($access_token,$ticket){

$getshakeinfourl='https://api.weixin.qq.com/shakearound/user/getshakeinfo?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页面

?

1
2

3

4

5

6

7

8
<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数据包示例

?

1
2

3

4

5

6

7

8

9

10

11
<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>

添加事件处理即可

?

1
2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23
/**

* 事件处理

* @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 集成了所有支付类 配置可用

?

1
2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330

331

332

333

334

335

336

337

338

339

340

341

342

343

344

345

346

347

348

349

350

351

352

353

354

355

356

357

358

359

360

361

362

363

364

365

366

367

368

369

370

371

372

373

374

375

376

377

378

379

380

381

382

383

384

385

386

387

388

389

390

391

392

393

394

395

396

397

398

399

400

401

402

403

404

405

406

407

408

409

410

411

412

413

414

415

416

417

418

419

420

421

422

423

424

425

426

427

428

429

430

431

432

433

434

435

436

437

438

439

440

441

442

443

444

445

446

447

448

449

450

451

452

453

454

455

456

457

458

459

460

461

462

463

464

465

466

467

468

469

470

471

472

473

474

475

476

477

478

479

480

481

482

483

484

485

486

487

488

489

490

491

492

493

494

495

496

497

498

499

500

501

502

503

504

505

506

507

508

509

510

511

512

513

514

515

516

517

518

519

520

521

522

523

524

525

526

527

528

529

530

531

532

533

534

535

536

537

538

539

540

541

542

543

544

545

546

547

548

549

550

551

552

553

554

555

556

557

558

559

560

561

562

563

564

565

566

567

568

569

570

571

572

573

574

575

576

577

578

579

580

581

582

583

584

585

586

587

588

589

590

591

592

593

594

595

596

597

598

599

600

601

602

603

604

605

606

607

608

609

610

611

612

613

614

615

616

617

618

619

620

621

622

623

624

625

626

627

628

629

630

631

632

633

634

635

636

637

638

639

640

641

642

643

644

645

646

647

648

649

650

651

652

653

654

655

656

657

658

659

660

661

662

663

664

665

666

667

668

669

670

671

672

673

674

675

676

677

678

679

680

681

682

683

684

685

686

687

688

689

690

691

692

693

694

695

696

697

698

699

700

701

702

703

704

705

706

707

708

709

710

711

712

713

714

715

716

717

718

719

720

721

722

723

724

725

726

727

728

729

730

731

732

733

734

735

736

737

738

739

740

741

742

743

744

745

746

747

748

749

750

751

752

753

754

755

756

757

758

759

760

761

762

763

764

765

766

767

768

769

770

771

772

773

774

775

776

777

778

779

780

781

782

783

784

785

786

787

788

789

790

791

792

793

794

795

796

797

798

799

800

801

802

803

804

805

806

807

808

809

810

811

812

813

814

815

816

817

818

819

820

821

822

823

824

825

826

827

828

829

830

831

832

833

834

835

836

837

838

839

840

841

842

843

844

845

846

847

848

849

850

851

852

853

854

855

856

857

858

859

860

861

862

863

864

865

866

867

868

869

870

871

872

873

874

875

876

877

878

879

880

881

882

883

884

885

886

887

888

889

890

891

892

893

894

895

896

897

898

899

900

901

902

903

904

905

906

907

908

909

910

911

912

913

914

915

916

917

918

919

920

921

922

923

924

925

926

927

928

929

930

931

932

933

934

935

936

937

938

939

940

941

942

943

944

945

946

947

948

949

950

951

952

953

954

955

956

957

958

959

960

961

962

963

964

965

966

967

968

969

970

971

972

973

974

975

976

977

978

979

980

981

982

983

984

985

986

987

988

989

990

991

992

993

994

995

996

997

998

999

1000

1001

1002

1003

1004

1005

1006

1007

1008

1009

1010

1011

1012

1013

1014

1015

1016

1017

1018

1019

1020

1021

1022

1023

1024

1025

1026

1027

1028

1029

1030

1031

1032

1033

1034

1035

1036

1037

1038

1039

1040

1041

1042

1043

1044

1045

1046

1047

1048

1049

1050

1051

1052

1053

1054

1055

1056

1057

1058

1059

1060

1061

1062

1063

1064

1065

1066

1067

1068

1069

1070

1071

1072

1073

1074

1075

1076

1077

1078

1079

1080

1081

1082

1083

1084

1085

1086

1087

1088

1089

1090

1091

1092

1093

1094

1095

1096

1097

1098

1099

1100

1101

1102

1103

1104

1105

1106

1107

1108

1109

1110

1111

1112

1113

1114

1115

1116

1117

1118

1119

1120

1121

1122

1123

1124

1125

1126

1127

1128

1129

1130

1131

1132

1133

1134

1135

1136

1137

1138

1139

1140

1141

1142

1143

1144

1145

1146

1147

1148

1149

1150

1151

1152

1153

1154

1155

1156

1157

1158

1159

1160

1161

1162

1163

1164

1165

1166

1167

1168

1169

1170

1171

1172

1173

1174

1175

1176

1177

1178

1179

1180

1181

1182

1183

1184

1185

1186

1187

1188

1189

1190

1191

1192

1193

1194

1195

1196

1197

1198

1199

1200

1201

1202

1203

1204

1205

1206

1207

1208

1209

1210

1211

1212

1213

1214

1215

1216

1217

1218

1219

1220

1221

1222

1223

1224

1225

1226

1227

1228

1229

1230

1231

1232

1233

1234

1235

1236

1237

1238

1239

1240

1241

1242

1243

1244

1245

1246

1247

1248

1249

1250

1251

1252

1253

1254

1255

1256

1257

1258

1259

1260

1261

1262

1263

1264

1265

1266

1267

1268

1269

1270

1271

1272

1273

1274

1275

1276

1277

1278

1279

1280

1281

1282

1283

1284

1285

1286

1287

1288

1289

1290

1291

1292

1293

1294

1295

1296

1297

1298

1299

1300

1301

1302

1303

1304

1305

1306

1307

1308

1309

1310

1311

1312

1313

1314

1315

1316

1317

1318

1319

1320

1321

1322

1323

1324

1325

1326

1327

1328

1329

1330

1331

1332

1333

1334

1335

1336

1337

1338

1339

1340

1341

1342

1343

1344

1345

1346

1347

1348

1349

1350

1351

1352

1353

1354

1355

1356

1357

1358

1359

1360

1361

1362

1363

1364

1365

1366

1367

1368

1369

1370

1371

1372

1373

1374

1375

1376

1377

1378

1379

1380

1381

1382

1383

1384

1385

1386

1387

1388

1389

1390

1391
<?php

/**

* 微信支付帮助库

* ====================================================

* 接口分三种类型:

* 【请求型接口】--wxpay_client_

* 统一支付接口类--unifiedorder

* 订单查询接口--orderquery

* 退款申请接口--refund

* 退款查询接口--refundquery

* 对账单接口--downloadbill

* 短链接转换接口--shorturl

* 【响应型接口】--wxpay_server_

* 通用通知接口--notify

* native支付——请求商家获取商品信息接口--nativecall

* 【其他】

* 静态链接二维码--nativelink

* jsapi支付--jsapi

* =====================================================

* 【commonutil】常用工具:

* trimstring(),设置参数时需要用到的字符处理函数

* createnoncestr(),产生随机字符串,不长于32位

* formatbizqueryparamap(),格式化参数,签名过程需要用到

* getsign(),生成签名

* arraytoxml(),array转xml

* xmltoarray(),xml转 array

* postxmlcurl(),以post方式提交xml到对应的接口url

* postxmlsslcurl(),使用证书,以post方式提交xml到对应的接口url

*/

include_once("sdkruntimeexception.php");

include_once("wxpay.pub.config.php");

/**

* 所有接口的基类

*/

class common_util_pub

{

function __construct() {

}

function trimstring($value)

{

$ret = null;

if (null != $value)

{

$ret = $value;

if (strlen($ret) == 0)

{

$ret = null;

}

}

return $ret;

}

/**

* 作用:产生随机字符串,不长于32位

*/

public function createnoncestr( $length = 32 )

{

$chars = "abcdefghijklmnopqrstuvwxyz0123456789";

$str ="";

for ( $i = 0; $i < $length; $i++ ) {

$str.= substr($chars, mt_rand(0, strlen($chars)-1), 1);

}

return $str;

}

/**

* 作用:格式化参数,签名过程需要使用

*/

function formatbizqueryparamap($paramap, $urlencode)

{

$buff = "";

ksort($paramap);

foreach ($paramap as $k => $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;

}

/**

* 作用:生成签名

*/

public function getsign($obj)

{

foreach ($obj as $k => $v)

{

$parameters[$k] = $v;

}

//签名步骤一:按字典序排序参数

ksort($parameters);

$string = $this->formatbizqueryparamap($parameters, false);

//echo '【string1】'.$string.'</br>';

//签名步骤二:在string后加入key

$string = $string."&key=".wxpayconf_pub::key;

//echo "【string2】".$string."</br>";

//签名步骤三:md5加密

$string = md5($string);

//echo "【string3】 ".$string."</br>";

//签名步骤四:所有字符转为大写

$result_ = strtoupper($string);

//echo "【result】 ".$result_."</br>";

return $result_;

}

/**

* 作用:array转xml

*/

function arraytoxml($arr)

{

$xml = "<xml>";

foreach ($arr as $key=>$val)

{

if (is_numeric($val))

{

$xml.="<".$key.">".$val."</".$key.">";

}

else

$xml.="<".$key."><![cdata[".$val."]]></".$key.">";

}

$xml.="</xml>";

return $xml;

}

/**

* 作用:将xml转为array

*/

public function xmltoarray($xml)

{

//将xml转为array

$array_data = json_decode(json_encode(simplexml_load_string($xml, 'simplexmlelement', libxml_nocdata)), true);

return $array_data;

}

/**

* 作用:以post方式提交xml到对应的接口url

*/

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"."<br>";

echo "<a href='http://curl.haxx.se/libcurl/c/libcurl-errors.html'>错误原因查询</a></br>";

curl_close($ch);

return false;

}

}

/**

* 作用:使用证书,以post方式提交xml到对应的接口url

*/

function postxmlsslcurl($xml,$url,$second=30)

{

$ch = curl_init();

//超时时间

curl_setopt($ch,curlopt_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);

//设置证书

//使用证书:cert 与 key 分别属于两个.pem文件

//默认格式为pem,可以注释

// curl_setopt($ch,curlopt_sslcerttype,'pem');

// curl_setopt($ch,curlopt_sslcert,wxpayconf_pub::sslcert_path );

// //默认格式为pem,可以注释

// 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根证书(用来验证的网站证书是否是ca颁布)

//post提交方式

curl_setopt($ch,curlopt_post, true);

curl_setopt($ch,curlopt_postfields,$xml);

$data = curl_exec($ch);

//返回结果

if($data){

curl_close($ch);

return $data;

}

else {

$error = curl_errno($ch);

echo "curl出错,错误码:$error"."<br>";

echo "<a href='http://curl.haxx.se/libcurl/c/libcurl-errors.html'>错误原因查询</a></br>";

curl_close($ch);

return false;

}

}

/**

* 作用:打印数组

*/

function printerr($wording='',$err='')

{

print_r('<pre>');

echo $wording."</br>";

var_dump($err);

print_r('</pre>');

}

}

/**

* 请求型接口的基类

*/

class wxpay_client_pub extends common_util_pub

{

var $parameters;//请求参数,类型为关联数组

public $response;//微信返回的响应

public $result;//返回参数,类型为关联数组

var $url;//接口链接

var $curl_timeout;//curl超时时间

/**

* 作用:设置请求参数

*/

function setparameter($parameter, $parametervalue)

{

$this->parameters[$this->trimstring($parameter)] = $this->trimstring($parametervalue);

}

/**

* 作用:设置标配的请求参数,生成签名,生成接口参数xml

*/

function createxml()

{

$this->parameters["appid"] = wxpayconf_pub::appid;//公众账号id

$this->parameters["mch_id"] = wxpayconf_pub::mchid;//商户号

$this->parameters["nonce_str"] = $this->createnoncestr();//随机字符串

$this->parameters["sign"] = $this->getsign($this->parameters);//签名

return $this->arraytoxml($this->parameters);

}

/**

* 作用:post请求xml

*/

function postxml()

{

$xml = $this->createxml();

$this->response = $this->postxmlcurl($xml,$this->url,$this->curl_timeout);

return $this->response;

}

/**

* 作用:使用证书post请求xml

*/

function postxmlssl()

{

$xml = $this->createxml();

$this->response = $this->postxmlsslcurl($xml,$this->url,$this->curl_timeout);

return $this->response;

}

/**

* 作用:获取结果,默认不使用证书

*/

function getresult()

{

$this->postxml();

$this->result = $this->xmltoarray($this->response);

return $this->result;

}

}

/**

* 统一支付接口类

*/

class unifiedorder_pub extends wxpay_client_pub

{

function __construct()

{

//设置接口链接

$this->url = "https://api.mch.weixin.qq.com/pay/unifiedorder";

//设置curl超时时间

$this->curl_timeout = wxpayconf_pub::curl_timeout;

}

/**

* 生成接口参数xml

*/

function createxml()

{

try

{

//检测必填参数

if($this->parameters["out_trade_no"] == null)

{

throw new sdkruntimeexception("缺少统一支付接口必填参数out_trade_no!"."<br>");

}elseif($this->parameters["body"] == null){

throw new sdkruntimeexception("缺少统一支付接口必填参数body!"."<br>");

}elseif ($this->parameters["total_fee"] == null ) {

throw new sdkruntimeexception("缺少统一支付接口必填参数total_fee!"."<br>");

}elseif ($this->parameters["notify_url"] == null) {

throw new sdkruntimeexception("缺少统一支付接口必填参数notify_url!"."<br>");

}elseif ($this->parameters["trade_type"] == null) {

throw new sdkruntimeexception("缺少统一支付接口必填参数trade_type!"."<br>");

}elseif ($this->parameters["trade_type"] == "jsapi" &&

$this->parameters["openid"] == null){

throw new sdkruntimeexception("统一支付接口中,缺少必填参数openid!trade_type为jsapi时,openid为必填参数!"."<br>");

}

$this->parameters["appid"] = wxpayconf_pub::appid;//公众账号id

$this->parameters["mch_id"] = wxpayconf_pub::mchid;//商户号

$this->parameters["spbill_create_ip"] = $_server['remote_addr'];//终端ip

$this->parameters["nonce_str"] = $this->createnoncestr();//随机字符串

$this->parameters["sign"] = $this->getsign($this->parameters);//签名

return $this->arraytoxml($this->parameters);

}catch (sdkruntimeexception $e)

{

die($e->errormessage());

}

}

/**

* 获取prepay_id

*/

function getprepayid()

{

$this->postxml();

$this->result = $this->xmltoarray($this->response);

$prepay_id = $this->result["prepay_id"];

return $prepay_id;

}

}

/**

* 订单查询接口

*/

class orderquery_pub extends wxpay_client_pub

{

function __construct()

{

//设置接口链接

$this->url = "https://api.mch.weixin.qq.com/pay/orderquery";

//设置curl超时时间

$this->curl_timeout = wxpayconf_pub::curl_timeout;

}

/**

* 生成接口参数xml

*/

function createxml()

{

try

{

//检测必填参数

if($this->parameters["out_trade_no"] == null &&

$this->parameters["transaction_id"] == null)

{

throw new sdkruntimeexception("订单查询接口中,out_trade_no、transaction_id至少填一个!"."<br>");

}

$this->parameters["appid"] = wxpayconf_pub::appid;//公众账号id

$this->parameters["mch_id"] = wxpayconf_pub::mchid;//商户号

$this->parameters["nonce_str"] = $this->createnoncestr();//随机字符串

$this->parameters["sign"] = $this->getsign($this->parameters);//签名

return $this->arraytoxml($this->parameters);

}catch (sdkruntimeexception $e)

{

die($e->errormessage());

}

}

}

/**

* 退款申请接口

*/

class refund_pub extends wxpay_client_pub

{

function __construct() {

//设置接口链接

$this->url = "https://api.mch.weixin.qq.com/secapi/pay/refund";

//设置curl超时时间

$this->curl_timeout = wxpayconf_pub::curl_timeout;

}

/**

* 生成接口参数xml

*/

function createxml()

{

try

{

//检测必填参数

if($this->parameters["out_trade_no"] == null && $this->parameters["transaction_id"] == null) {

throw new sdkruntimeexception("退款申请接口中,out_trade_no、transaction_id至少填一个!"."<br>");

}elseif($this->parameters["out_refund_no"] == null){

throw new sdkruntimeexception("退款申请接口中,缺少必填参数out_refund_no!"."<br>");

}elseif($this->parameters["total_fee"] == null){

throw new sdkruntimeexception("退款申请接口中,缺少必填参数total_fee!"."<br>");

}elseif($this->parameters["refund_fee"] == null){

throw new sdkruntimeexception("退款申请接口中,缺少必填参数refund_fee!"."<br>");

}elseif($this->parameters["op_user_id"] == null){

throw new sdkruntimeexception("退款申请接口中,缺少必填参数op_user_id!"."<br>");

}

$this->parameters["appid"] = wxpayconf_pub::appid;//公众账号id

$this->parameters["mch_id"] = wxpayconf_pub::mchid;//商户号

$this->parameters["nonce_str"] = $this->createnoncestr();//随机字符串

$this->parameters["sign"] = $this->getsign($this->parameters);//签名

return $this->arraytoxml($this->parameters);

}catch (sdkruntimeexception $e)

{

die($e->errormessage());

}

}

/**

* 作用:获取结果,使用证书通信

*/

function getresult()

{

$this->postxmlssl();

$this->result = $this->xmltoarray($this->response);

return $this->result;

}

}

/**

* 退款查询接口

*/

class refundquery_pub extends wxpay_client_pub

{

function __construct() {

//设置接口链接

$this->url = "https://api.mch.weixin.qq.com/pay/refundquery";

//设置curl超时时间

$this->curl_timeout = wxpayconf_pub::curl_timeout;

}

/**

* 生成接口参数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("退款查询接口中,out_refund_no、out_trade_no、transaction_id、refund_id四个参数必填一个!"."<br>");

}

$this->parameters["appid"] = wxpayconf_pub::appid;//公众账号id

$this->parameters["mch_id"] = wxpayconf_pub::mchid;//商户号

$this->parameters["nonce_str"] = $this->createnoncestr();//随机字符串

$this->parameters["sign"] = $this->getsign($this->parameters);//签名

return $this->arraytoxml($this->parameters);

}catch (sdkruntimeexception $e)

{

die($e->errormessage());

}

}

/**

* 作用:获取结果,使用证书通信

*/

function getresult()

{

$this->postxmlssl();

$this->result = $this->xmltoarray($this->response);

return $this->result;

}

}

/**

* 对账单接口

*/

class downloadbill_pub extends wxpay_client_pub

{

function __construct()

{

//设置接口链接

$this->url = "https://api.mch.weixin.qq.com/pay/downloadbill";

//设置curl超时时间

$this->curl_timeout = wxpayconf_pub::curl_timeout;

}

/**

* 生成接口参数xml

*/

function createxml()

{

try

{

if($this->parameters["bill_date"] == null )

{

throw new sdkruntimeexception("对账单接口中,缺少必填参数bill_date!"."<br>");

}

$this->parameters["appid"] = wxpayconf_pub::appid;//公众账号id

$this->parameters["mch_id"] = wxpayconf_pub::mchid;//商户号

$this->parameters["nonce_str"] = $this->createnoncestr();//随机字符串

$this->parameters["sign"] = $this->getsign($this->parameters);//签名

return $this->arraytoxml($this->parameters);

}catch (sdkruntimeexception $e)

{

die($e->errormessage());

}

}

/**

* 作用:获取结果,默认不使用证书

*/

function getresult()

{

$this->postxml();

$this->result = $this->xmltoarray($this->result_xml);

return $this->result;

}

}

/**

* 短链接转换接口

*/

class shorturl_pub extends wxpay_client_pub

{

function __construct()

{

//设置接口链接

$this->url = "https://api.mch.weixin.qq.com/tools/shorturl";

//设置curl超时时间

$this->curl_timeout = wxpayconf_pub::curl_timeout;

}

/**

* 生成接口参数xml

*/

function createxml()

{

try

{

if($this->parameters["long_url"] == null )

{

throw new sdkruntimeexception("短链接转换接口中,缺少必填参数long_url!"."<br>");

}

$this->parameters["appid"] = wxpayconf_pub::appid;//公众账号id

$this->parameters["mch_id"] = wxpayconf_pub::mchid;//商户号

$this->parameters["nonce_str"] = $this->createnoncestr();//随机字符串

$this->parameters["sign"] = $this->getsign($this->parameters);//签名

return $this->arraytoxml($this->parameters);

}catch (sdkruntimeexception $e)

{

die($e->errormessage());

}

}

/**

* 获取prepay_id

*/

function getshorturl()

{

$this->postxml();

$prepay_id = $this->result["short_url"];

return $prepay_id;

}

}

/**

* 响应型接口基类

*/

class wxpay_server_pub extends common_util_pub

{

public $data;//接收到的数据,类型为关联数组

var $returnparameters;//返回参数,类型为关联数组

/**

* 将微信的请求xml转换成关联数组,以方便数据处理

*/

function savedata($xml)

{

$this->data = $this->xmltoarray($xml);

}

function checksign()

{

$tmpdata = $this->data;

unset($tmpdata['sign']);

$sign = $this->getsign($tmpdata);//本地签名

if ($this->data['sign'] == $sign) {

return true;

}

return false;

}

/**

* 获取微信的请求数据

*/

function getdata()

{

return $this->data;

}

/**

* 设置返回微信的xml数据

*/

function setreturnparameter($parameter, $parametervalue)

{

$this->returnparameters[$this->trimstring($parameter)] = $this->trimstring($parametervalue);

}

/**

* 生成接口参数xml

*/

function createxml()

{

return $this->arraytoxml($this->returnparameters);

}

/**

* 将xml数据返回微信

*/

function returnxml()

{

$returnxml = $this->createxml();

return $returnxml;

}

}

/**

* 通用通知接口

*/

class notify_pub extends wxpay_server_pub

{

}

/**

* 请求商家获取商品信息接口

*/

class nativecall_pub extends wxpay_server_pub

{

/**

* 生成接口参数xml

*/

function createxml()

{

if($this->returnparameters["return_code"] == "success"){

$this->returnparameters["appid"] = wxpayconf_pub::appid;//公众账号id

$this->returnparameters["mch_id"] = wxpayconf_pub::mchid;//商户号

$this->returnparameters["nonce_str"] = $this->createnoncestr();//随机字符串

$this->returnparameters["sign"] = $this->getsign($this->returnparameters);//签名

}

return $this->arraytoxml($this->returnparameters);

}

/**

* 获取product_id

*/

function getproductid()

{

$product_id = $this->data["product_id"];

return $product_id;

}

}

/**

* 静态链接二维码

*/

class nativelink_pub extends common_util_pub

{

var $parameters;//静态链接参数

var $url;//静态链接

function __construct()

{

}

/**

* 设置参数

*/

function setparameter($parameter, $parametervalue)

{

$this->parameters[$this->trimstring($parameter)] = $this->trimstring($parametervalue);

}

/**

* 生成native支付链接二维码

*/

function createlink()

{

try

{

if($this->parameters["product_id"] == null)

{

throw new sdkruntimeexception("缺少native支付二维码链接必填参数product_id!"."<br>");

}

$this->parameters["appid"] = wxpayconf_pub::appid;//公众账号id

$this->parameters["mch_id"] = wxpayconf_pub::mchid;//商户号

$time_stamp = time();

$this->parameters["time_stamp"] = "$time_stamp";//时间戳

$this->parameters["nonce_str"] = $this->createnoncestr();//随机字符串

$this->parameters["sign"] = $this->getsign($this->parameters);//签名

$bizstring = $this->formatbizqueryparamap($this->parameters, false);

$this->url = "weixin://wxpay/bizpayurl?".$bizstring;

}catch (sdkruntimeexception $e)

{

die($e->errormessage());

}

}

/**

* 返回链接

*/

function geturl()

{

$this->createlink();

return $this->url;

}

}

/**

* jsapi支付——h5网页端调起支付接口

*/

class jsapi_pub extends common_util_pub

{

var $code;//code码,用以获取openid

var $openid;//用户的openid

var $parameters;//jsapi参数,格式为json

var $prepay_id;//使用统一支付接口得到的预支付id

var $curl_timeout;//curl超时时间

function __construct()

{

//设置curl超时时间

$this->curl_timeout = wxpayconf_pub::curl_timeout;

}

/**

* 作用:生成可以获得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?".$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?".$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;

}

/**

* 作用:设置prepay_id

*/

function setprepayid($prepayid)

{

$this->prepay_id = $prepayid;

}

/**

* 作用:设置code

*/

function setcode($code_)

{

$this->code = $code_;

}

/**

* 作用:设置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;

}

}

/**

* 现金红包接口

* @author gaoyl101

*/

class redpack_pub extends wxpay_client_pub

{

var $code;//code码,用以获取openid

var $openid;//用户的openid

function __construct()

{

//设置接口链接

$this->url = "https://api.mch.weixin.qq.com/mmpaymkttransfers/sendredpack";

//设置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["nick_name"] == null){

throw new sdkruntimeexception("缺少发红包接口必填参数nick_name!"."<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["min_value"] == null){

throw new sdkruntimeexception("缺少发红包接口必填参数min_value!"."<br>");

}elseif ($this->parameters["max_value"] == null ) {

throw new sdkruntimeexception("缺少发红包接口必填参数max_value!"."<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["client_ip"] = $_server['remote_addr'];//终端ip

$this->parameters["nonce_str"] = $this->createnoncestr();//随机字符串

$this->parameters["re_openid"] = $this->parameters["re_openid"];

//$this->openid;//用户openid

$this->parameters["sign"] = $this->getsign($this->parameters);//签名

return $this->arraytoxml($this->parameters);

}catch (sdkruntimeexception $e)

{

die($e->errormessage());

}

}

function sendredpack()

{

$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?".$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?".$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_;

}

}

/**

* 红包支付接口

* @author gaoyl101

*/

class groupredpack_pub extends wxpay_client_pub

{

var $code;//code码,用以获取openid

var $openid;//用户的openid

function __construct()

{

//设置接口链接

$this->url = "https://api.mch.weixin.qq.com/mmpaymkttransfers/sendgroupredpack";

//设置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["amt_type"] == null) {

throw new sdkruntimeexception("缺少发红包接口必填参数amt_type!"."<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["sign"] = $this->getsign($this->parameters);//签名

return $this->arraytoxml($this->parameters);

}catch (sdkruntimeexception $e)

{

die($e->errormessage());

}

}

function sendredpack()

{

$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?".$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?".$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_;

}

}

/**

* 摇一摇红包预下单

* @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);//签名

//echo json_encode($this->parameters);die;

return $this->arraytoxml($this->parameters);

//echo $this->parameters["auth_appid"].'--'.$this->parameters["auth_mchid"];die;

}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?".$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?".$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_;

}

}

/**

* 摇一摇红包 创建活动

* @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"] = '0';//开启活动

$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?".$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?".$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_;

}

}

/**

* 摇一摇红包 录入红包

* @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?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?".$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?".$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_;

}

}

?>

以上内容比较长,希望大家在阅读的使用有点耐心,本文写的还算不错嘀,自我感觉良好吧,呵呵。使用php实现微信摇一摇周边红包相关内容就先给大家介绍到这里,希望对大家有所帮助。

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 建站教程 使用PHP实现微信摇一摇周边红包 https://www.kuaiidc.com/99563.html

相关文章

发表评论
暂无评论