Development of ThinkPHP5 WeChat cash red envelope
This article mainly introduces the development of ThinkPHP5 WeChat cash red envelopes. It has a certain reference value. Now I share it with everyone. Friends in need can refer to it
Controller:
/** * 发放现金红包 */public function payLuckyMoney() { $obj2 = array(); //appid $obj2['wxappid'] = config('wx_gzh.appId'); //商户id $obj2['mch_id'] = config('wx_sh.mchId'); //组合成28位,根据官方开发文档,可以自行设置 $obj2['mch_billno'] = config('wx_sh.mchId') . date('YmdHis') . rand(1000, 9999); // 调用接口的机器IP地址 $obj2['client_ip'] = $_SERVER['REMOTE_ADDR']; //接收红包openid $obj2['re_openid'] = session('openid'); /* 付款金额设置start,按照概率设置随机发放。 * 1-200元之间,单位分。这里设置95%概率为1-2元,5%的概率为2-10元 */ $n = rand(1, 100); if ($n <= 95) { $obj2['total_amount'] = rand(100, 200); } else { $obj2['total_amount'] = rand(200, 1000); } //$obj2['total_amount'] = 100; /* 付款金额设置end */ // 红包个数 $obj2['total_num'] = 1; // 商户名称 $obj2['send_name'] = "小门太"; // 红包祝福语 $obj2['wishing'] = "恭喜发财,大吉大利"; // 活动名称 $obj2['act_name'] = "小门太认证领红包"; // 备注 $obj2['remark'] = "小门太红包"; /* 文档中未说明以下变量,李富林博客中有。注释起来也没问题。不需要。 $obj2['min_value'] = $money; $obj2['max_value'] = $money; $obj2['nick_name'] = '小门太红包'; */ $url = "https://api.mch.weixin.qq.com/mmpaymkttransfers/sendredpack"; $isPay = pay_lucky_money($url, $obj2); $res = xml_to_array($isPay); // 发放成功,把红包数据插入数据库 if ($res['return_msg'] == '发放成功') { // 发放成功,进行逻辑处理 } else { // 发放失败,返回失败原因 return $res['return_msg']; } }
common.php function (you can also common a class to call):
// ---- 以下是微信现金红包的区域start ---- ///** * 微信发放现金红包核心函数,调用本函数就直接发放红包了。 * @param $url 现金红包的请求地址 * @param $obj * @return mixed */function pay_lucky_money($url, $obj) { //创建随机字符串(32位) $obj['nonce_str'] = str_rand(); //创建签名 $sign = get_sign($obj, false); //halt($sign); $obj['sign'] = $sign; //将签名传入数组 $postXml = array_to_xml($obj); //将参数转为xml格式 //halt($postXml); $responseXml = curl_post_ssl($url, $postXml); //提交请求 //halt($responseXml); return $responseXml; }/** * @param $arr 生成前面的参数 * @param $urlencode * @return string 返回加密后的签名 */function get_sign($arr, $urlencode) { $buff = ""; //对传进来的数组参数里面的内容按照字母顺序排序,a在前面,z在最后(字典序) ksort($arr); foreach ($arr as $k => $v) { if (null != $v && "null" != $v && "sign" != $k) { //签名不要转码 if ($urlencode) { $v = urlencode($v); } $buff .= $k . "=" . $v . "&"; } } // 去掉末尾符号“&”,其实不用这个if,因为长度肯定大于0 if (strlen($buff) > 0) { $stringA = substr($buff, 0, strlen($buff) - 1); } //签名拼接api $stringSignTemp = $stringA . "&key=" . config('wx_sh.key'); //签名加密并大写 $sign = strtoupper(md5($stringSignTemp)); return $sign; }//post请求网站,需要证书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_URL, $url); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); //cert 与 key 分别属于两个.pem文件 //请确保您的libcurl版本是否支持双向认证,版本高于7.20.1,相当于发curl验证【当前文件所在目录/cert/wxpay/】下的两个pem证书文件。 curl_setopt($ch, CURLOPT_SSLCERT, dirname(__FILE__) . DIRECTORY_SEPARATOR . 'cert' . DIRECTORY_SEPARATOR . 'wxpay' . DIRECTORY_SEPARATOR . 'apiclient_cert.pem'); curl_setopt($ch, CURLOPT_SSLKEY, dirname(__FILE__) . DIRECTORY_SEPARATOR . 'cert' . DIRECTORY_SEPARATOR . 'wxpay' . DIRECTORY_SEPARATOR . 'apiclient_key.pem'); //curl_setopt($ch,CURLOPT_CAINFO,dirname(__FILE__).DIRECTORY_SEPARATOR. // 'cert'.DIRECTORY_SEPARATOR.'rootca.pem'); //这个不需要,因为大部分的操作系统都已经内置了rootca.pem证书了,就是常见的CA证书。 if (count($aHeader) >= 1) { curl_setopt($ch, CURLOPT_HTTPHEADER, $aHeader); } curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $vars); $data = curl_exec($ch); if ($data) { curl_close($ch); return $data; } else { $error = curl_errno($ch); echo "call faild, errorCode:$error\n"; curl_close($ch); return false; } }// ---- 以下是微信现金红包的区域end ---- //
————Above, because my code is written under common.php, and common.php is under the application directory, so the certificate is placed under the application/cert/wxpay/ directory
The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!
Related recommendations:
About the use of thinkphp behavior
Use PHPstudy to deploy the PHP system under Windows server
The above is the detailed content of Development of ThinkPHP5 WeChat cash red envelope. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Solution to the error reported when deploying thinkphp5 in Pagoda: 1. Open the Pagoda server, install the php pathinfo extension and enable it; 2. Configure the ".access" file with the content "RewriteRule ^(.*)$ index.php?s=/$1 [QSA ,PT,L]”; 3. In website management, just enable thinkphp’s pseudo-static.

thinkphp5 post cannot get a value because TP5 uses the strpos function to find the app/json string in the content-type value of the Header. The solution is to set the content-type value of the Header to app/json.

Solution to thinkphp5 url rewriting not working: 1. Check whether the mod_rewrite.so module is loaded in the httpd.conf configuration file; 2. Change None in AllowOverride None to All; 3. Modify the Apache configuration file .htaccess to "RewriteRule ^ (.*)$ index.php [L,E=PATH_INFO:$1]" and save it.

Methods for thinkphp5 to obtain the requested URL: 1. Use the "$request = Request::instance();" method of the "\think\Request" class to obtain the current URL information; 2. Use the built-in helper function "$request-> url()" to obtain the complete URL address including the domain name.

How to remove the thinkphp5 title bar icon: 1. Find the favicon.ico file under the thinkphp5 framework public; 2. Delete the file or choose another picture to rename it to favicon.ico and replace the original favicon.ico file.

Solution to thinkphp5 prompting that the controller does not exist: 1. Check whether the namespace in the corresponding controller is written correctly and change it to the correct namespace; 2. Open the corresponding tp file and modify the class name.

How to query yesterday's data in ThinkPHP5: 1. Open ThinkPHP5 related files; 2. Query yesterday's data through the expression "db('table')->whereTime('c_time', 'yesterday')->select();" Can.

How to set error prompts in thinkphp5: 1. Enter the public folder in the project root directory and open the index.php entry file; 2. View the comments on the debug mode switch; 3. Adjust the value of the "APP_DEBUG" constant to true to display Error message prompt.
