如何将ThinkPHP5改写为支持微信扫码支付的长尾关键词?
- 内容介绍
- 文章标签
- 相关推荐
本文共计1025个文字,预计阅读时间需要5分钟。
本文分享了如何在大家中实现ThinkPHP5微信扫码支付的代码示例。以下是大致步骤和内容概览:
1. 配置WxPay.Config.php
2.控制器中添加微信支付控制器
3.微信支付参数设置
4.订单处理
5.价格设置
php
// 配置WxPay.Config.php// 微信支付配置文件// 控制器中添加微信支付控制器// 微信支付控制器
// 微信支付参数设置// 参数配置
// 订单处理// 订单创建和支付逻辑
// 价格设置// 商品价格设置
本文实例为大家分享了thinkphp5微信扫码支付的具体代码,供大家参考,具体内容如下
配置WxPay.Config.php
控制器
//微信支付 //参数 订单 价格 public function wxPay($order_number,$money) { header("Content-type:text/html;charset=utf-8"); //require_once VENDOR_PATH.'/alipaymobile/config.php'; require_once VENDOR_PATH.'/wxpay/WxPay.Api.php';//引入微信支付 require_once VENDOR_PATH.'/wxpay/WxPay.Notify.php'; require_once VENDOR_PATH.'/wxpay/phpqrcode/phpqrcode.php'; $input = new \WxPayUnifiedOrder();//统一下单 $config = new \WxPayConfig();//配置参数 $notify = new \QRcode(); //$paymoney = input('post.paymoney'); //支付金额 $paymoney = $money; //测试写死 //$paymoney = 0.01; //测试写死 //$str = date('Ymd').substr(implode(NULL, array_map('ord', str_split(substr(uniqid(), 7, 13), 1))), 0, 8);//生成订单号 $out_trade_no = $order_number; //商户订单号(自定义) $goods_name = '扫码支付'.$paymoney.'元'; //商品名称(自定义) $input->SetBody($goods_name); $input->SetAttach($goods_name); $input->SetOut_trade_no($out_trade_no); $input->SetTotal_fee($paymoney*100);//金额乘以100 $input->SetTime_start(date("YmdHis")); $input->SetTime_expire(date("YmdHis", time() + 600)); $input->SetGoods_tag("test"); //回调地址 注意能访问 $input->SetNotify_url("www.域名.com/index.php/index/index/wxpaynotifyurl"); //回调地址 $input->SetTrade_type("NATIVE"); $input->SetProduct_id('123456789');//商品id $result = \WxPayApi::unifiedOrder($config, $input); if($result['result_code']=='SUCCESS' && $result['return_code']=='SUCCESS') { $url = $result["code_url"]; $this->assign('money',$paymoney); $this->assign('url',$url); $this->assign('num',$out_trade_no); //映射视图 微信二维码需要自己生成 return view("../../../template/wxpay"); }else{ $this->error('参数错误'); } // return view(); }
视图 生成二维码 进行扫描付款
<!doctype html> <html> <head> <meta charset="utf-8"> <title>微信支付页面</title> <style> .wxsm{ width:1200px; margin:0 auto; overflow:hidden;} .wxsmt{ width:100%; height:40px; border-bottom:1px solid #ccc;} .wxsmt h2{ font-size:14px; line-height:40px; color:#232323; font-weight:400; text-align:center;} .wxsmc{ width:100%; overflow:hidden;} .smcr{ overflow:hidden; margin:0 auto; } .smcr h2{ font-size:14px; font-weight:400; line-height:40px; text-align:center;} .smcr h2 span{ font-size:20px; color:#f23535;} .smcrb{ width:100%; overflow:hidden;;} .smm{ width:218px; height:284px; border:1px solid #3cb035; background:#3cb035; margin:0 auto} .smm img{ width:218px; height:218px; background:#fff;} .smm span{ display:block; color:#fff; line-height:66px; text-align:center;} </style> <script src="__TEMP__/js/jquery-1.10.1.min.js"></script> </head> <body> <div class="wxsm"> <div class="wxsmt"> <h2>订单提交成功,请尽快付款</h2> </div> <div class="wxsmc"> <div class="smcr"> <h2>应付金额:<span>{$money}</span>元</h2> <div class="smcrb"> <div class="smm"> <img src="/vendor/wxpay/qrcode.php?data=<?php echo urlencode($url);?>"/> <span>打开微信,扫描二维码支付</span> </div> </div> </div> </div> </div> <script> //设置每隔1000毫秒执行一次load() 方法 var myIntval=setInterval(function(){loads()},1000); function loads(){ var xmlinput"); //$results = db('fund') -> where('id',1) -> update(['a'=>$xml]);exit(); $xmlArr = $this->Init($xml); file_put_contents(dirname(__FILE__).'/xml.txt',$xml); //记录日志 支付成功后查看xml.txt文件是否有内容 如果有xml格式文件说明回调成功 $out_trade_no=$xmlArr['out_trade_no']; //订单号 $total_fee=$xmlArr['total_fee']/100; //回调回来的xml文件中金额是以分为单位的 $result_code=$xmlArr['result_code']; //状态 //$result = db('order') -> where(['order' => $out_trade_no]) -> find(); //if($result['price'] == $total_fee){ if($result_code=='SUCCESS'){ //数据库操作 //处理数据库操作 例如修改订单状态 给账户充值等等 echo 'SUCCESS'; //返回成功给微信端 一定要带上不然微信会一直回调8次 exit; }else{ //失败 return false; exit; } } public function Init($xml) { $array_data = json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true); return $array_data; }
简单的写了一下 能实现简单的thinkphp5+微信扫码支付的大体流程 若有有问题的地方 还请各位大神指点
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持易盾网络。
本文共计1025个文字,预计阅读时间需要5分钟。
本文分享了如何在大家中实现ThinkPHP5微信扫码支付的代码示例。以下是大致步骤和内容概览:
1. 配置WxPay.Config.php
2.控制器中添加微信支付控制器
3.微信支付参数设置
4.订单处理
5.价格设置
php
// 配置WxPay.Config.php// 微信支付配置文件// 控制器中添加微信支付控制器// 微信支付控制器
// 微信支付参数设置// 参数配置
// 订单处理// 订单创建和支付逻辑
// 价格设置// 商品价格设置
本文实例为大家分享了thinkphp5微信扫码支付的具体代码,供大家参考,具体内容如下
配置WxPay.Config.php
控制器
//微信支付 //参数 订单 价格 public function wxPay($order_number,$money) { header("Content-type:text/html;charset=utf-8"); //require_once VENDOR_PATH.'/alipaymobile/config.php'; require_once VENDOR_PATH.'/wxpay/WxPay.Api.php';//引入微信支付 require_once VENDOR_PATH.'/wxpay/WxPay.Notify.php'; require_once VENDOR_PATH.'/wxpay/phpqrcode/phpqrcode.php'; $input = new \WxPayUnifiedOrder();//统一下单 $config = new \WxPayConfig();//配置参数 $notify = new \QRcode(); //$paymoney = input('post.paymoney'); //支付金额 $paymoney = $money; //测试写死 //$paymoney = 0.01; //测试写死 //$str = date('Ymd').substr(implode(NULL, array_map('ord', str_split(substr(uniqid(), 7, 13), 1))), 0, 8);//生成订单号 $out_trade_no = $order_number; //商户订单号(自定义) $goods_name = '扫码支付'.$paymoney.'元'; //商品名称(自定义) $input->SetBody($goods_name); $input->SetAttach($goods_name); $input->SetOut_trade_no($out_trade_no); $input->SetTotal_fee($paymoney*100);//金额乘以100 $input->SetTime_start(date("YmdHis")); $input->SetTime_expire(date("YmdHis", time() + 600)); $input->SetGoods_tag("test"); //回调地址 注意能访问 $input->SetNotify_url("www.域名.com/index.php/index/index/wxpaynotifyurl"); //回调地址 $input->SetTrade_type("NATIVE"); $input->SetProduct_id('123456789');//商品id $result = \WxPayApi::unifiedOrder($config, $input); if($result['result_code']=='SUCCESS' && $result['return_code']=='SUCCESS') { $url = $result["code_url"]; $this->assign('money',$paymoney); $this->assign('url',$url); $this->assign('num',$out_trade_no); //映射视图 微信二维码需要自己生成 return view("../../../template/wxpay"); }else{ $this->error('参数错误'); } // return view(); }
视图 生成二维码 进行扫描付款
<!doctype html> <html> <head> <meta charset="utf-8"> <title>微信支付页面</title> <style> .wxsm{ width:1200px; margin:0 auto; overflow:hidden;} .wxsmt{ width:100%; height:40px; border-bottom:1px solid #ccc;} .wxsmt h2{ font-size:14px; line-height:40px; color:#232323; font-weight:400; text-align:center;} .wxsmc{ width:100%; overflow:hidden;} .smcr{ overflow:hidden; margin:0 auto; } .smcr h2{ font-size:14px; font-weight:400; line-height:40px; text-align:center;} .smcr h2 span{ font-size:20px; color:#f23535;} .smcrb{ width:100%; overflow:hidden;;} .smm{ width:218px; height:284px; border:1px solid #3cb035; background:#3cb035; margin:0 auto} .smm img{ width:218px; height:218px; background:#fff;} .smm span{ display:block; color:#fff; line-height:66px; text-align:center;} </style> <script src="__TEMP__/js/jquery-1.10.1.min.js"></script> </head> <body> <div class="wxsm"> <div class="wxsmt"> <h2>订单提交成功,请尽快付款</h2> </div> <div class="wxsmc"> <div class="smcr"> <h2>应付金额:<span>{$money}</span>元</h2> <div class="smcrb"> <div class="smm"> <img src="/vendor/wxpay/qrcode.php?data=<?php echo urlencode($url);?>"/> <span>打开微信,扫描二维码支付</span> </div> </div> </div> </div> </div> <script> //设置每隔1000毫秒执行一次load() 方法 var myIntval=setInterval(function(){loads()},1000); function loads(){ var xmlinput"); //$results = db('fund') -> where('id',1) -> update(['a'=>$xml]);exit(); $xmlArr = $this->Init($xml); file_put_contents(dirname(__FILE__).'/xml.txt',$xml); //记录日志 支付成功后查看xml.txt文件是否有内容 如果有xml格式文件说明回调成功 $out_trade_no=$xmlArr['out_trade_no']; //订单号 $total_fee=$xmlArr['total_fee']/100; //回调回来的xml文件中金额是以分为单位的 $result_code=$xmlArr['result_code']; //状态 //$result = db('order') -> where(['order' => $out_trade_no]) -> find(); //if($result['price'] == $total_fee){ if($result_code=='SUCCESS'){ //数据库操作 //处理数据库操作 例如修改订单状态 给账户充值等等 echo 'SUCCESS'; //返回成功给微信端 一定要带上不然微信会一直回调8次 exit; }else{ //失败 return false; exit; } } public function Init($xml) { $array_data = json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true); return $array_data; }
简单的写了一下 能实现简单的thinkphp5+微信扫码支付的大体流程 若有有问题的地方 还请各位大神指点
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持易盾网络。

