Table of Contents
PHP WeChat public account automatically sends red envelope API, php public red envelope api
Home Backend Development PHP Tutorial PHP WeChat public account automatically sends red envelope API, php public red envelope api_PHP tutorial

PHP WeChat public account automatically sends red envelope API, php public red envelope api_PHP tutorial

Jul 12, 2016 am 08:51 AM
api php WeChat grab red envelopes Red envelope

PHP WeChat public account automatically sends red envelope API, php public red envelope api

The example in this article shares the PHP WeChat public account automatically sends red envelope API code for your reference. . The details are as follows:

Post the core interface code and fill in the data yourself, interface testing OK
wechat_packet.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

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

<!--&#63;php

/**

 * 发送红包接口

 * Created by PhpStorm.

 * User: ADKi

 * Date: 2016/4/25 0025

 * Time: 15:25

 */

 

class wechat_packet{

 private $url = 'https://api.mch.weixin.qq.com/mmpaymkttransfers/sendredpack';//请求URL

 private $mch_id;//商户号

 private $weixin_appid;//公众账号appid

 private $send_name;//商户名称

 private $total_num = 1;//发送红包总人数

 private $wishing;//红包祝福语

 private $client_ip;//调用接口的机器Ip地址

 private $act_name;//活动名称

 private $remark;//备注信息

 private $nonce_str;//随机字符串,不长于32位

 private $api_password;

 private $arraytoxml;//数组转xml

 /**

  * 公钥

  */

 private $public_key = "/api/wechat/cert/apiclient_cert.pem";

 /**

  * 私钥

  */

 private $private_key = '/api/wechat/cert/apiclient_key.pem';

 /**

  * ca证书

  */

 private $rootca = 'api/wechat/cert/rootca.pem';

 public function __construct()

 {

  //初始化红包设置信息

  $this--->weixin_appid = C('wap_weixin_appid');

  $this->mch_id = C('wechat_mch_id');

  $this->send_name = C('wechat_send_name');

  $this->wishing = C('wechat_wishing');

  $this->act_name = C('wechat_act_name');

  $this->client_ip = $_SERVER['SERVER_ADDR'];

  $this->remark = C('wechat_remark');

  $this->nonce_str = $this->create_nonce_str(32);

  $this->api_password = C('wechat_api_password');

  $inc_file = BASE_PATH.DS.'api'.DS.'wechat'.DS.'arraytoxml.php';

  if(is_file($inc_file)) {

   require($inc_file);

  }

  $this->arraytoxml = new ArrayToXML();

 }

  

 public function send_post($mch_billno,$re_openid,$total_amount){

  $sign = $this->create_sign($mch_billno,$re_openid,$total_amount);

  $send_array = array(

   'nonce_str' => $this->nonce_str,

   'mch_billno' => $mch_billno,

   'mch_id' => $this->mch_id,

   'wxappid' => $this->weixin_appid,

   'send_name' => $this->send_name,

   're_openid' => $re_openid,

   'total_amount' => $total_amount,

   'total_num' => $this->total_num,

   'wishing' => $this->wishing,

   'client_ip' => $this->client_ip,

   'act_name' => $this->act_name,

   'remark' => $this->remark,

   'sign' => $sign,

  );

  $send_xml = $this->arraytoxml->toXml($send_array,'');

  $data = $this->curl_post_ssl($this->url, $send_xml);

  $data = $this->xmlToArray($data);

  file_put_contents('adki',var_export($data,true),FILE_APPEND);

 }

 /*

 请确保您的libcurl版本是否支持双向认证,版本高于7.20.1

 */

 private function curl_post_ssl($url, $vars, $second=30,$aHeader=array()){

  $ch = curl_init();

  //超时时间

  curl_setopt($ch,CURLOPT_TIMEOUT,$second);

  curl_setopt($ch,CURLOPT_RETURNTRANSFER, 1);

  //这里设置代理,如果有的话

  //curl_setopt($ch,CURLOPT_PROXY, '10.206.30.98');

  //curl_setopt($ch,CURLOPT_PROXYPORT, 8080);

  curl_setopt($ch,CURLOPT_URL,$url);

  curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,false);

  curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,false);

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

  //第一种方法,cert 与 key 分别属于两个.pem文件

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

  curl_setopt($ch,CURLOPT_SSLCERTTYPE,'PEM');

  curl_setopt($ch,CURLOPT_SSLCERT,getcwd().$this->public_key);

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

  curl_setopt($ch,CURLOPT_SSLKEYTYPE,'PEM');

  curl_setopt($ch,CURLOPT_SSLKEY,getcwd().$this->private_key);

  //ca证书

  curl_setopt($ch,CURLOPT_CAINFO,$this->rootca);

  //第二种方式,两个文件合成一个.pem文件

  //curl_setopt($ch,CURLOPT_SSLCERT,getcwd().'/all.pem');

  if( count($aHeader) >= 1 ){

   curl_setopt($ch, CURLOPT_HTTPHEADER, $aHeader);

  }

  curl_setopt($ch,CURLOPT_POST, 1);

  curl_setopt($ch,CURLOPT_POSTFIELDS,$vars);

  $data = curl_exec($ch);

  if($data){

   curl_close($ch);

   return $data;

  }

  else {

   $error = curl_errno($ch);

   echo "call faild, errorCode:$error\n\n\n\n";

   curl_close($ch);

   return false;

  }

 }

 //生成签名

 private function create_sign($mch_billno,$re_openid,$total_amount){

  $string_array = array(

   'act_name' => $this->act_name,

   'client_ip' => $this->client_ip,

   'mch_billno' => $mch_billno,

   'mch_id' => $this->mch_id,

   'nonce_str' => $this->nonce_str,

   're_openid' => $re_openid,

   'remark' => $this->remark,

   'send_name' => $this->send_name,

   'total_amount' => $total_amount,

   'total_num' => $this->total_num,

   'wishing' => $this->wishing,

   'wxappid' => $this->weixin_appid,

  );

  foreach ($string_array as $key => $value){

 

   if(!empty($value)){

 

    $stringA .= "$key=$value";

    if($key != 'wxappid'){

 

     $stringA .= '&';

    }

   }

  }

  //转成UTF-8

  $stringA = $this->gbkToUtf8($stringA);

  $stringSignTemp="$stringA&key=$this->api_password";

  $sign = MD5($stringSignTemp);

 

  $sign = strtoupper($sign);

  return $sign;

 }

 //生成随机字符串

 private function create_nonce_str($length){

  $str = null;

  $strPol = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz";

  $max = strlen($strPol)-1;

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

   $str.=$strPol[rand(0,$max)];//rand($min,$max)生成介于min和max两个数之间的一个随机整数

  }

 

  return $str;

 }

 /**

  *自动判断把gbk或gb2312编码的字符串转为utf8

  *能自动判断输入字符串的编码类,如果本身是utf-8就不用转换,否则就转换为utf-8的字符串

  *支持的字符编码类型是:utf-8,gbk,gb2312

  *@$str:string 字符串

  */

 private function gbkToUtf8($str){

  $charset = mb_detect_encoding($str,array('ASCII','UTF-8','GBK','GB2312'));

  $charset = strtolower($charset);

  if("utf-8" != $charset){

   $str = iconv('UTF-8',$charset,$str);

  }

  return $str;

 

 }

 private function xmlToArray($postStr){

  $msg = array();

  $msg = (array)simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);

  return $msg;

 }

}

Copy after login

Array to xml:arraytoxml.php

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

<!--&#63;php

/**

 * Created by PhpStorm.

 * User: ADKi

 * Date: 2016/4/26 0026

 * Time: 12:19

 */

class ArrayToXML

{

 public function toXml($data){

  $xml = '<xml-->';

  foreach ($data as $key => $value){

   if (is_numeric($value)){

    $xml .= "<".$key.">".$value."<!--".$key."-->";

   }else{

    $xml .= "<".$key."><!--[CDATA[".$value."]]--><!--".$key."-->";

   }

  }

  $xml .= '';

  return $xml;

 }

 

}

Copy after login

The above is the entire content of this article. I hope it will be helpful to everyone in learning PHP programming. I also hope that everyone will support Bangkejia.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1133032.htmlTechArticlePHP WeChat public account automatically sends red envelope API, php public red envelope api This article shares an example for everyone to share the PHP WeChat public account automatically Send a red envelope API code and share it with everyone for your reference. The details are as follows...
Statement of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? Apr 03, 2025 am 12:03 AM

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

Explain the match expression (PHP 8 ) and how it differs from switch. Explain the match expression (PHP 8 ) and how it differs from switch. Apr 06, 2025 am 12:03 AM

In PHP8, match expressions are a new control structure that returns different results based on the value of the expression. 1) It is similar to a switch statement, but returns a value instead of an execution statement block. 2) The match expression is strictly compared (===), which improves security. 3) It avoids possible break omissions in switch statements and enhances the simplicity and readability of the code.

The difference between H5 and mini-programs and APPs The difference between H5 and mini-programs and APPs Apr 06, 2025 am 10:42 AM

H5. The main difference between mini programs and APP is: technical architecture: H5 is based on web technology, and mini programs and APP are independent applications. Experience and functions: H5 is light and easy to use, with limited functions; mini programs are lightweight and have good interactiveness; APPs are powerful and have smooth experience. Compatibility: H5 is cross-platform compatible, applets and APPs are restricted by the platform. Development cost: H5 has low development cost, medium mini programs, and highest APP. Applicable scenarios: H5 is suitable for information display, applets are suitable for lightweight applications, and APPs are suitable for complex functions.

What is Cross-Site Request Forgery (CSRF) and how do you implement CSRF protection in PHP? What is Cross-Site Request Forgery (CSRF) and how do you implement CSRF protection in PHP? Apr 07, 2025 am 12:02 AM

In PHP, you can effectively prevent CSRF attacks by using unpredictable tokens. Specific methods include: 1. Generate and embed CSRF tokens in the form; 2. Verify the validity of the token when processing the request.

What should I do if the company's security software conflicts with applications? How to troubleshoot HUES security software causes common software to fail to open? What should I do if the company's security software conflicts with applications? How to troubleshoot HUES security software causes common software to fail to open? Apr 01, 2025 pm 10:48 PM

Compatibility issues and troubleshooting methods for company security software and application. Many companies will install security software in order to ensure intranet security. However, security software sometimes...

How can you prevent a class from being extended or a method from being overridden in PHP? (final keyword) How can you prevent a class from being extended or a method from being overridden in PHP? (final keyword) Apr 08, 2025 am 12:03 AM

In PHP, the final keyword is used to prevent classes from being inherited and methods being overwritten. 1) When marking the class as final, the class cannot be inherited. 2) When marking the method as final, the method cannot be rewritten by the subclass. Using final keywords ensures the stability and security of your code.

See all articles