Home php教程 php手册 ThinkPHP整合微信支付之发现金红包

ThinkPHP整合微信支付之发现金红包

Jun 07, 2016 am 11:38 AM

大家好,微信支付系列教程四种方式已经结束,如果你以为结束了就错了,有同学跟我提到微信还有红包功能,我开始也没注意这一块,于是看了下微信商户平台上有讲到这一块,微信支付平台上也早就有了,于是趁热打铁,研究了下,继续发出关于微信红包的教程文章。接下来请看微信支付发红包之现金红包教程!
现在微信商户可以向指定的openid发送红包,目前红包分两种:现金红包和裂变红包。本教程是关于现金红包的。

在贴代码之前,先讲几个注意点:1.去商户平台里,给你的商户充钱,没钱是发不了红包哒! 2.微信红包需要证书支持,所以请大家到商户平台下去下载好证书后放到安全文件夹下,并且需要在配置文件中指定好证书路径!

step1:老样子,还是介绍配置文件WxPayConf_pub.php,看过之前微信支付教程的同学应该很清楚这一块了,这里我将代码截图出来,配置好后进行下一步!
ThinkPHP整合微信支付之发现金红包

step2:下载你的证书,放到一个目录下,对应配置文件中,记得这里是绝对路径!
ThinkPHP整合微信支付之发现金红包

step3:之前的微信支付的demo微信官方已经帮我们写好了WxPayHelper.php这个类库,我们可以很方便的调用就够了,而微信红包目前还没有官方demo,所以这里我们得自己在WxPayHelper.php文件下写自己的红包支付方法:/**<br>  * 现金红包接口<br>  * @author gaoyl101<br>  */<br> class Redpack_pub extends Wxpay_client_pub<br> {<br>     var $code;//code码,用以获取openid<br>     var $openid;//用户的openid<br>     <br>     function __construct()<br>     {<br>         //设置接口链接<br>         $this->url = "https://api.mch.weixin.qq.com/mmpaymkttransfers/sendredpack";<br>         //设置curl超时时间<br>         $this->curl_timeout = WxPayConf_pub::CURL_TIMEOUT;<br>     }<br> <br>     /**<br>      * 生成接口参数xml<br>      */<br>     function createXml()<br>     {<br>         try<br>         {<br>             //检测必填参数<br>             if($this->parameters["mch_billno"] == null)<br>             {<br>                 throw new SDKRuntimeException("缺少发红包接口必填参数mch_billno!"."<br>");<br>             }elseif($this->parameters["nick_name"] == null){<br>                 throw new SDKRuntimeException("缺少发红包接口必填参数nick_name!"."<br>");<br>             }elseif ($this->parameters["send_name"] == null ) {<br>                 throw new SDKRuntimeException("缺少发红包接口必填参数send_name!"."<br>");<br>             }elseif ($this->parameters["total_amount"] == null) {<br>                 throw new SDKRuntimeException("缺少发红包接口必填参数total_amount!"."<br>");<br>             }elseif($this->parameters["min_value"] == null){<br>                 throw new SDKRuntimeException("缺少发红包接口必填参数min_value!"."<br>");<br>             }elseif ($this->parameters["max_value"] == null ) {<br>                 throw new SDKRuntimeException("缺少发红包接口必填参数max_value!"."<br>");<br>             }elseif ($this->parameters["total_num"] == null) {<br>                 throw new SDKRuntimeException("缺少发红包接口必填参数total_num!"."<br>");<br>             }elseif ($this->parameters["wishing"] == null) {<br>                 throw new SDKRuntimeException("缺少发红包接口必填参数wishing!"."<br>");<br>             }elseif ($this->parameters["act_name"] == null) {<br>                 throw new SDKRuntimeException("缺少发红包接口必填参数act_name!"."<br>");<br>             }elseif ($this->parameters["remark"] == null) {<br>                 throw new SDKRuntimeException("缺少发红包接口必填参数remark!"."<br>");<br>             }<br>             $this->parameters["wxappid"] = WxPayConf_pub::APPID;//公众账号ID<br>             $this->parameters["mch_id"] = WxPayConf_pub::MCHID;//商户号<br>             $this->parameters["client_ip"] = $_SERVER['REMOTE_ADDR'];//终端ip<br>             $this->parameters["nonce_str"] = $this->createNoncestr();//随机字符串<br>             $this->parameters["re_openid"] = $this->openid;//用户openid<br>             $this->parameters["sign"] = $this->getSign($this->parameters);//签名<br>             return  $this->arrayToXml($this->parameters);<br>         }catch (SDKRuntimeException $e)<br>         {<br>             die($e->errorMessage());<br>         }<br>     }<br>     <br>     <br>     function sendRedpack()<br>     {<br>         $this->postXmlSSL();<br>         $this->result = $this->xmlToArray($this->response);<br>         return $this->result;<br>     }<br>     <br>     <br>     <br>     /**<br>      *     作用:生成可以获得code的url<br>      */<br>     function createOauthUrlForCode($redirectUrl)<br>     {<br>         $urlObj["appid"] = WxPayConf_pub::APPID;<br>         $urlObj["redirect_uri"] = "$redirectUrl";<br>         $urlObj["response_type"] = "code";<br>         $urlObj["scope"] = "snsapi_base";<br>         $urlObj["state"] = "STATE"."#wechat_redirect";<br>         $bizString = $this->formatBizQueryParaMap($urlObj, false);<br>         return "https://open.weixin.qq.com/connect/oauth2/authorize?".$bizString;<br>     }<br>     <br>     <br>     <br>     /**<br>      *     作用:生成可以获得openid的url<br>      */<br>     function createOauthUrlForOpenid()<br>     {<br>         $urlObj["appid"] = WxPayConf_pub::APPID;<br>         $urlObj["secret"] = WxPayConf_pub::APPSECRET;<br>         $urlObj["code"] = $this->code;<br>         $urlObj["grant_type"] = "authorization_code";<br>         $bizString = $this->formatBizQueryParaMap($urlObj, false);<br>         return "https://api.weixin.qq.com/sns/oauth2/access_token?".$bizString;<br>     }<br>     <br>     /**<br>      *     作用:通过curl向微信提交code,以获取openid<br>      */<br>     function getOpenid()<br>     {<br>         $url = $this->createOauthUrlForOpenid();<br>         //初始化curl<br>            $ch = curl_init();<br>         //设置超时<br>         curl_setopt($ch, CURLOP_TIMEOUT, $this->curl_timeout);<br>         curl_setopt($ch, CURLOPT_URL, $url);<br>         curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,FALSE);<br>         curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,FALSE);<br>         curl_setopt($ch, CURLOPT_HEADER, FALSE);<br>         curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);<br>         //运行curl,结果以jason形式返回<br>         $res = curl_exec($ch);<br>         curl_close($ch);<br>         //取出openid<br>         $data = json_decode($res,true);<br>         $this->openid = $data['openid'];<br>         return $this->openid;<br>     }<br>     <br>     /**<br>      *     作用:设置code<br>      */<br>     function setCode($code_)<br>     {<br>         $this->code = $code_;<br>     }<br> }其实这里的代码我做的并不是很好,我并没有封装,因为做裂变红包也会用到相似的代码,这里做demo我就先不改了,有兴趣的朋友可以在此基础上继续晚上!上面的代码就是我们要用到的工具类,把他放在WxPayHelper.php最下面就可以了!

step4:创建控制器WxCashRedPackController
ThinkPHP整合微信支付之发现金红包

控制器中的代码:
1.引入WxPayHelper.php类库/**<br>      * 初始化<br>      */<br>     public function _initialize()<br>     {<br>         //引入WxPayPubHelper<br>         vendor('WxPayPubHelper.WxPayPubHelper');<br>     }2.创建发送红包方法:sendRedpack,这个方法就是发送红包的具体功能代码!/**<br>      * 发送红包<br>      */<br>     public function sendRedpack()<br>     {<br>         //调用请求接口基类<br>         $Redpack = new \Redpack_pub();<br>         <br>         //=========步骤1:网页授权获取用户openid============<br>         //通过code获得openid<br>         if (!isset($_GET['code']))<br>         {<br>             //触发微信返回code码<br>             $reduct_uri = WEB_HOST."/index.php/Home/WxCashRedPack/sendRedpack";<br>             $url = $Redpack->createOauthUrlForCode($reduct_uri);<br>             Header("Location: $url");<br>         }else<br>         {<br>             //获取code码,以获取openid<br>             $code = $_GET['code'];<br>             $Redpack->setCode($code);<br>             $openid = $Redpack->getOpenId();<br>         }<br>          <br>         <br>         <br>         //商户订单号<br>         $Redpack->setParameter('mch_billno', C('WxPayConf_pub.APPID')."static");<br>         //提供方名称<br>         $Redpack->setParameter('nick_name', "gaoyl101");<br>         //商户名称<br>         $Redpack->setParameter('send_name', "gaoyl101");<br>         //用户openid<br> //         $Redpack->setParameter('re_openid', $parameterValue);<br>         //付款金额<br>         $Redpack->setParameter('total_amount', 100);<br>         //最小红包金额<br>         $Redpack->setParameter('min_value', 100);<br>         //最大红包金额<br>         $Redpack->setParameter('max_value', 100);<br>         //红包发放总人数<br>         $Redpack->setParameter('total_num', 1);<br>         //红包祝福语<br>         $Redpack->setParameter('wishing', "现金红包教程祝大家写代码快乐");<br>         //活动名称<br>         $Redpack->setParameter('act_name', "现金红包教程");<br>         //备注<br>         $Redpack->setParameter('remark', "现金红包教程祝大家写代码快乐");<br>         //以下是非必填项目<br>         //子商户号  <br> //         $Redpack->setParameter('sub_mch_id', $parameterValue);<br> //        //商户logo的url<br> //         $Redpack->setParameter('logo_imgurl', $parameterValue);<br> //         //分享文案<br> //         $Redpack->setParameter('share_content', $parameterValue);<br> //         //分享链接<br> //         $Redpack->setParameter('share_url', $parameterValue);<br> //         //分享的图片<br> //         $Redpack->setParameter('share_imgurl', $parameterValue);<br>         <br>         <br>         <br>         $result = $Redpack->sendRedpack();<br>         <br>         dump($result);<br>     }访问这个方法,微信就会发红包啦
在这里我dump了微信发送红包之后返回的结果,下面的业务逻辑就可以根据自己的需求接下去写了,返回值的说明可以看微信红包的接口说明,在微信支付平台上有。
到这里微信红包现金红包代码已经全部结束,功能经过测试已经完成!

下面是成功后的红包截图:
ThinkPHP整合微信支付之发现金红包

之前的几篇微信支付的教程很多同学看了之后都会遇到问题,并找到我得到了解决,个人认为我发的文章得到了它应有的价值,希望这篇文章也能帮到正在为发送红包而发愁的同学!

有问题请留言,下面还会介绍微信发红包之裂变红包!

微信支付之jsapi:
http://www.thinkphp.cn/code/1321.html
微信支付教程扫码模式一:
http://www.thinkphp.cn/code/1322.html
微信支付教程扫码模式二:
http://www.thinkphp.cn/code/1323.html
微信支付教程刷卡支付:
http://www.thinkphp.cn/code/1324.html
微信裂变红包教程:
http://www.thinkphp.cn/code/1330.html
欢迎大家吐槽,转载请说明出处,请支持原创,谢谢!
我们的微信开发群:422579975(已满) 105195188(未满),代码已放在群文件中
欢迎大家加入讨论问题

AD:真正免费,域名+虚机+企业邮箱=0元

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

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
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)

Learn about introductory code examples for Python programming Learn about introductory code examples for Python programming Jan 04, 2024 am 10:50 AM

Learn about Python programming with introductory code examples Python is an easy-to-learn, yet powerful programming language. For beginners, it is very important to understand the introductory code examples of Python programming. This article will provide you with some concrete code examples to help you get started quickly. Print HelloWorldprint("HelloWorld") This is the simplest code example in Python. The print() function is used to output the specified content

PHP variables in action: 10 real-life examples of use PHP variables in action: 10 real-life examples of use Feb 19, 2024 pm 03:00 PM

PHP variables store values ​​during program runtime and are crucial for building dynamic and interactive WEB applications. This article takes an in-depth look at PHP variables and shows them in action with 10 real-life examples. 1. Store user input $username=$_POST["username"];$passWord=$_POST["password"]; This example extracts the username and password from the form submission and stores them in variables for further processing. 2. Set the configuration value $database_host="localhost";$database_username="username";$database_pa

From beginner to proficient: Code implementation of commonly used data structures in Go language From beginner to proficient: Code implementation of commonly used data structures in Go language Mar 04, 2024 pm 03:09 PM

Title: From Beginner to Mastery: Code Implementation of Commonly Used Data Structures in Go Language Data structures play a vital role in programming and are the basis of programming. In the Go language, there are many commonly used data structures, and mastering the implementation of these data structures is crucial to becoming a good programmer. This article will introduce the commonly used data structures in the Go language and give corresponding code examples to help readers from getting started to becoming proficient in these data structures. 1. Array Array is a basic data structure, a group of the same type

Java implements simple bubble sort code Java implements simple bubble sort code Jan 30, 2024 am 09:34 AM

The simplest code example of Java bubble sort Bubble sort is a common sorting algorithm. Its basic idea is to gradually adjust the sequence to be sorted into an ordered sequence through the comparison and exchange of adjacent elements. Here is a simple Java code example that demonstrates how to implement bubble sort: publicclassBubbleSort{publicstaticvoidbubbleSort(int[]arr){int

Go language programming examples: code examples in web development Go language programming examples: code examples in web development Mar 04, 2024 pm 04:54 PM

"Go Language Programming Examples: Code Examples in Web Development" With the rapid development of the Internet, Web development has become an indispensable part of various industries. As a programming language with powerful functions and superior performance, Go language is increasingly favored by developers in web development. This article will introduce how to use Go language for Web development through specific code examples, so that readers can better understand and use Go language to build their own Web applications. 1. Simple HTTP Server First, let’s start with a

How to use PHP to write inventory management function code in the inventory management system How to use PHP to write inventory management function code in the inventory management system Aug 06, 2023 pm 04:49 PM

How to use PHP to write the inventory management function code in the inventory management system. Inventory management is an indispensable part of many enterprises. For companies with multiple warehouses, the inventory management function is particularly important. By properly managing and tracking inventory, companies can allocate inventory between different warehouses, optimize operating costs, and improve collaboration efficiency. This article will introduce how to use PHP to write code for inventory warehouse management functions, and provide you with relevant code examples. 1. Establish the database before starting to write the code for the inventory warehouse management function.

Guidance and Examples: Learn to implement the selection sort algorithm in Java Guidance and Examples: Learn to implement the selection sort algorithm in Java Feb 18, 2024 am 10:52 AM

Java Selection Sorting Method Code Writing Guide and Examples Selection sorting is a simple and intuitive sorting algorithm. The idea is to select the smallest (or largest) element from the unsorted elements each time and exchange it until all elements are sorted. This article will provide a code writing guide for selection sorting, and attach specific Java sample code. Algorithm Principle The basic principle of selection sort is to divide the array to be sorted into two parts, sorted and unsorted. Each time, the smallest (or largest) element is selected from the unsorted part and placed at the end of the sorted part. Repeat the above

Huawei Cloud Edge Computing Interconnection Guide: Java code examples to quickly implement interfaces Huawei Cloud Edge Computing Interconnection Guide: Java code examples to quickly implement interfaces Jul 05, 2023 pm 09:57 PM

Huawei Cloud Edge Computing Interconnection Guide: Java Code Samples to Quickly Implement Interfaces With the rapid development of IoT technology and the rise of edge computing, more and more enterprises are beginning to pay attention to the application of edge computing. Huawei Cloud provides edge computing services, providing enterprises with highly reliable computing resources and a convenient development environment, making edge computing applications easier to implement. This article will introduce how to quickly implement the Huawei Cloud edge computing interface through Java code. First, we need to prepare the development environment. Make sure you have the Java Development Kit installed (

See all articles