Detailed explanation of Thinkphp integrating WeChat payment function

小云云
Release: 2017-12-02 10:21:25
Original
2523 people have browsed it

WeChat payment is now common in our lives, and WeChat applets are also very popular during development. In this article, we will continue to explain to you about Thinkphp’s integration of WeChat payment functions.

1. WeChat public account:

Set the domain name that can obtain user ID information permissions among the unique appid, appscrect, and interface permissions (each user will have a unique ID for different publics. Obtain the basic information of the user's WeChat account through this ID (see the WeChat developer documentation for details), set the WeChat payment authorization directory on the WeChat payment button (written to the level of the controller that initiates the request), and set the developer's WeChat account as a test whitelist (Required when using WeChat developer tools)

2. WeChat payment platform:

Merchant platform login account, payment key (you can set it yourself at any time, there can only be one),

3. Integrate the logic into thinkphp:

Set the front-end WeChat payment button and click to call the payment initiation controller method,

The controller runs, references the WeChat payment class, and obtains the user openid , obtain the order data, splice out all the data required by ordinary merchants' prepayment jsp, display the customized payment page,

Click to pay on the payment page, and call the jspi script function provided by WeChat to initiate payment to initiate payment. ,

After the payment is completed, the page will redirect to (the jump directory {:U('controller/function)} set in the script function of the custom payment page), and the asynchronous (silent) setting will be Processing order logic (recording payment time, marking as paid, marking as WeChat payment), etc.

Code:

WeChat payment button on my order page:

WeChat Payment

Initiate payment controller Wxpay:

$_GET['order_key_num'],'expire'=>3600)); S('pay_now_id',$_GET['order_key_num'],3600); } vendor('Weixinpay.WxPayPubHelper'); //使用jsapi接口 $jsApi = new \JsApi_pub(); //=========步骤1:网页授权获取用户openid============ //通过code获得openid if($_GET['code'] == ''){ //跳转 $redirect_uri = 'https://当前域名+模块+控制器+方法'; $url = 'https://open.weixin.qq.com/connect/oauth2/authorize ?appid=公众号特有IDredirect_uri='.$redirect_uri.'&response_type=code&scope=snsapi_base&state=STATE#wechat_redirect'; header("Location: $url"); exit(); }else{ //获取openid $url = 'https://api.weixin.qq.com/sns/oauth2/access_token ?appid=公众号ID&secret=公众号scrept&code='.$_GET['code'].'&grant_type=authorization_code'; $openid_arr = json_decode(file_get_contents($url),true); } $openid=$openid_arr['openid']; $pay_now_id = S('pay_now_id'); if($pay_now_id){ $id=$pay_now_id; $o = D('order_info'); $order_info = $o->where('order_id = %d',$id)->find(); if(empty($order_info['paycode'])){ $order_info['paycode'] = 'weixin'; } if($order_info['is_pay']){ $this->error('当前订单已经支付'); } }else{ $this->error("不存在当前订单编号!"); } $res = array( 'order_sn' => $order_info['order_sn'], 'order_amount' => $order_info['pay_money'] ); //=========步骤2:使用统一支付接口,获取prepay_id============ //使用统一支付接口 $unifiedOrder = new \UnifiedOrder_pub(); //设置统一支付接口参数 //设置必填参数 //appid已填,商户无需重复填写 //mch_id已填,商户无需重复填写 //noncestr已填,商户无需重复填写 //spbill_create_ip已填,商户无需重复填写 //sign已填,商户无需重复填写 $total_fee = $order_info['pay_money']*100; // $total_fee = $res['order_amount']; //$total_fee = 1; // var_dump($order_info['pay_money']);die; $body = "订单支付"; $unifiedOrder->setParameter("openid", "$openid");//用户标识 $unifiedOrder->setParameter("body", '商品采购');//商品描述 //自定义订单号,此处仅作举例 $unifiedOrder->setParameter("out_trade_no", $order_info['order_sn']);//商户订单号 $unifiedOrder->setParameter("total_fee", $total_fee);//总金额 //$unifiedOrder->setParameter("attach", "order_sn={$res['order_sn']}");//附加数据 $unifiedOrder->setParameter("notify_url", \WxPayConf_pub::NOTIFY_URL);//通知地址 $unifiedOrder->setParameter("trade_type", "JSAPI");//交易类型 //非必填参数,商户可根据实际情况选填 //$unifiedOrder->setParameter("sub_mch_id","XXXX");//子商户号 //$unifiedOrder->setParameter("device_info","XXXX");//设备号 //$unifiedOrder->setParameter("attach","XXXX");//附加数据 //$unifiedOrder->setParameter("time_start","XXXX");//交易起始时间 //$unifiedOrder->setParameter("time_expire","XXXX");//交易结束时间 //$unifiedOrder->setParameter("goods_tag","XXXX");//商品标记 //$unifiedOrder->setParameter("openid","XXXX");//用户标识 //$unifiedOrder->setParameter("product_id","XXXX");//商品ID $prepay_id = $unifiedOrder->getPrepayId(); // var_dump($prepay_id);die; //=========步骤3:使用jsapi调起支付============ $jsApi->setPrepayId($prepay_id); $jsApiParameters = $jsApi->getParameters(); $wxconf = json_decode($jsApiParameters, true); if ($wxconf['package'] == 'prepay_id=') { $this->error('当前订单存在异常!'); } $this->assign('res', $res); $this->assign('jsApiParameters', $jsApiParameters); $this->display('jsapi'); } //异步通知url,商户根据实际开发过程设定 public function notify_url() { vendor('Weixinpay.WxPayPubHelper'); //使用通用通知接口 $notify = new \Notify_pub(); //存储微信的回调 $xml = $GLOBALS['HTTP_RAW_POST_DATA']; $notify->saveData($xml); //验证签名,并回应微信。 //对后台通知交互时,如果微信收到商户的应答不是成功或超时,微信认为通知失败, //微信会通过一定的策略(如30分钟共8次)定期重新发起通知, //尽可能提高通知的成功率,但微信不保证通知最终能成功。 if($notify->checkSign() == FALSE){ $notify->setReturnParameter("return_code", "FAIL");//返回状态码 $notify->setReturnParameter("return_msg", "签名失败");//返回信息 }else{ $notify->setReturnParameter("return_code", "SUCCESS");//设置返回码 } $returnXml = $notify->returnXml(); //==商户根据实际情况设置相应的处理流程,此处仅作举例======= //以log文件形式记录回调信息 //$log_name = "notify_url.log";//log文件路径 //$this->log_result($log_name, "【接收到的notify通知】:\n".$xml."\n"); $parameter = $notify->xmlToArray($xml); //$this->log_result($log_name, "【接收到的notify通知】:\n".$parameter."\n"); if($notify->checkSign() == TRUE){ if ($notify->data["return_code"] == "FAIL") { //此处应该更新一下订单状态,商户自行增删操作 //$this->log_result($log_name, "【通信出错】:\n".$xml."\n"); //更新订单数据【通信出错】设为无效订单 echo 'error'; } else if($notify->data["result_code"] == "FAIL"){ //此处应该更新一下订单状态,商户自行增删操作 //$this->log_result($log_name, "【业务出错】:\n".$xml."\n"); //更新订单数据【通信出错】设为无效订单 echo 'error'; } else{ //$this->log_result($log_name, "【支付成功】:\n".$xml."\n"); //我这里用到一个process方法,成功返回数据后处理,返回地数据具体可以参考微信的文档 if ($this->process($parameter)) { //处理成功后输出success,微信就不会再下发请求了 echo 'success'; }else { //没有处理成功,微信会间隔的发送请求 echo 'error'; } } } } //订单处理 private function process($parameter) { //此处应该更新一下订单状态,商户自行增删操作 /* * 返回的数据最少有以下几个 * $parameter = array( 'out_trade_no' => xxx,//商户订单号 'total_fee' => XXXX,//支付金额 'openid' => XXxxx,//付款的用户ID ); */ $data = array( 'order_sn'=>$parameter['out_trade_no'], 'des'=>('订单交易:'.$parameter['out_trade_no']), 'money'=>$parameter['total_fee'], ); orderhandlestarysdgdss($data);//这是一个common方法,他会将该订单状态设置为已支付之类的 return true; } } ?>
Copy after login

After initiating payment, splice the prepayment data parameters (see the WeChat ordinary merchant developer documentation for the parameter list - WeChat Payment - Unified Order) display page:

             
   
本次订单需支付:¥{$res['order_amount']}
Copy after login

Then there is the class file:

Detailed explanation of Thinkphp integrating WeChat payment function

The cacert is the certificate storage directory; the certificate is not necessarily required;

## Just look for the #vendor folder in My Files.

The above content is about Thinkphp integrating WeChat payment function, I hope it can help everyone.

Related recommendations:

How to implement WeChat applet payment and refund in php

Introduction example of WeChat applet development

Encapsulation of network requests by WeChat applet

Example of password input by WeChat applet

WeChat applet Robot automatic customer service function

The above is the detailed content of Detailed explanation of Thinkphp integrating WeChat payment function. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!