本文实例讲述了thinkphp框架整合微信支付之native 扫码支付模式二。分享给大家供大家参考,具体如下:
大家好,这篇文章是继微信支付之native 扫码支付 模式一之后的微信支付系列教程第三篇:扫码支付之模式二
介绍下扫码支付目前有两种模式,模式一比模式二稍微复杂点,至于模式一与模式二的具体内容,流程,微信开发文档都有详细介绍,这里就不多说废话,接下来赶紧上教程!
首先我们还是一样,导入微信支付的类库:
接下来是public下的文件:
以上跟native扫码模式一一样,不明白请看
jsapi支付请看:
接下来直接看控制器部分的代码:
step1:同样,先初始化引入wxpaypubhelper类库
/***初始化*/publicfunction_initialize(){//引入wxpaypubhelpervendor('wxpaypubhelper.wxpaypubhelper');}
step2:这里就跟扫码支付模式一有区别了:根据订单生产二维码,使用统一支付接口,请看代码:
publicfunctioncreateqrcode(){//使用统一支付接口$unifiedorder=new\unifiedorder_pub();//设置统一支付接口参数//设置必填参数//appid已填,商户无需重复填写//mch_id已填,商户无需重复填写//noncestr已填,商户无需重复填写//spbill_create_ip已填,商户无需重复填写//sign已填,商户无需重复填写$unifiedorder->tparameter("body","贡献一分钱");//商品描述//自定义订单号,此处仅作举例$timestamp=time();$out_trade_no=c('wxpayconf_pub.appid')."$timestamp";$unifiedorder->tparameter("out_trade_no","$out_tr驰名商标保护ade_no");//商户订单号$unifiedorder->tparameter("total_fee","1");//总金额$unifiedorder->tparameter("notify_url",c('wxpayconf_pub.notify_url'));//通知地址$unifiedorder->tparameter("trade_type","native");//交易类型//非必填参数,商户可根据实际情况选填//$unifiedorder->tparameter("sub_mch_id","xxxx");//子商户号//$unifiedorder->tparameter("device_info","xxxx");//设备号//$unifiedorder->tparameter("attach","xxxx");//附加数据//$unifiedorder->tparameter("time_start","xxxx");//交易起始时间//$unifiedorder->tparameter("time_expire","xxxx");//交易结束时间//$unifiedorder->tparameter("goods_tag","xxxx");//商品标记//$unifiedorder->tparameter("openid","xxxx");//用户标识//$unifiedorder->tparameter("product_id","xxxx");//商品id//获取统一支付接口结果$unifiedorderresult=$unifiedorder->getresult();//商户根据实际情况设置相应的处理流程if($unifiedorderresult["return_code"]=="fail"){//商户自行增加处理流程echo"通信出错:".$unifiedorderresult['return_msg']."<br>";}elif($unifiedorderresult["result_code"]=="fail"){//商户自行增加处理流程echo"错误代码:".$unifiedorderresult['err_code']."<br>";echo"错误代码描述:".$unifiedorderresult['err_code_des']."<br>";}elif($unifiedorderresult["code_url"]!=null){//从统一支付接口获取到code_url$code_url=$unifiedorderresult["code_url"];//商户自行增加处理流程//......}$this->assign('out_trade_no',$out_trade_no);$this->assign('code_url',$code_url);$this->assign('unifiedorderresult',$unifiedorderresult);$this->display('qrcode');}
对应qrcode.html页面:
<!doctypehtml><html><head><metachart=加拿大冷吗"utf-8"><t情人节翻译itle>微信安全支付</title></head><body><divalign="center"id="qrcode"></div><divalign="center"><p>订单号:<?phpecho$out_trade_no;?></p></div><divalign="center"><formaction="./order_query.php"method="post"><inputname="out_trade_no"type='hidden'value="<?phpecho$out_trade_no;?>"><buttontype="submit">查询订单状态</button></form></div><br><divalign="center"><formaction="./refund.php"method="post"><inputname="out_trade_no"type='hidden'value="<?phpecho$out_trade_no;?>"><inputname="refund_fee"type='hidden'value="1"><buttontype="submit">申请退款</button></form></div><br><divalign="center"><ahref="../index.php" rel="external nofollow" >返回首页</a></div></body><scriptsrc="__public__/js/qrcode.js"></script><script>if(<?phpecho$unifiedorderresult["code_url"]!=null;?>){varurl="<?phpecho$code_url;?>";//参数1表示图像大小,取值范围1-10;参数2表示质量,取值范围'l','m','q','h'varqr=qrcode(10,'m');qr.adddata(url);qr.make();varwording=document.createelement('p');wording.innerhtml="扫我,扫我";varcode=document.createelement('div');code.innerhtml=qr.createimgtag();varelement=document.getelementbyid("qrcode");element.appendchild(wording);element.appendchild(code);}</script></html>
模式二不需要配置公众平台了,所以简单就简单在这里
step3:异步通知,这里都一样:
publicfunctionnotify(){//使用通用通知接口$notify=new\notify_pub();//存储微信的回调$xml=$globals['http_raw_post_data'];$notify->savedata($xml);//验证签名,并回应微信。//对后台通知交互时,如果微信收到商户的应答不是成功或超时,微信认为通知失败,//微信会通过一定的策略(如30分钟共8次)定期重新发起通知,//尽可能提高通知的成功率,但微信不保证通知最终能成功。if($notify->checksign()==fal){$notify->treturnparameter("return_code","fail");//返回状态码$notify->treturnparameter("return_msg","签名失败");//返回信息}el{$notify->treturnparameter("return_code","success");//设置返回码}$returnxml=$notify->returnxml();echo$returnxml;//==商户根据实际情况设置相应的处理流程,此处仅作举例=======//以log文件形式记录回调信息//$log_=newlog_();$log_name=__root__."/public/notify_url.log";//log文件路径$this->log_result($log_name,"【接收到的n对数函数的导数otify通知】:\n".$xml."\n");if($notify->checksign()==true){if($notify->data["return_code"]=="fail"){//此处应该更新一下订单状态,商户自行增删操作log_result($log_name,"【通信出错】:\n".$xml."\n");}elif($notify->data["result_code"]=="fail"){//此处应该更新一下订单状态,商户自行增删操作log_result($log_name,"【业务出错】:\n".$xml."\n");}el{//此处应该更新一下订单状态,商户自行增删操作log_result($log_name,"【支付成功】:\n".$xml."\n");}//商户自行增加处理流程,//例如:更新订单状态//例如:数据库操作//例如:推送支付完成信息}}
这样模式二的扫码支付就ok了 是不是相对来说简单很多?
下面是测试截图:
扫码截图:
扫码结果:
有问题请留言,下面还会介绍微信支付刷卡支付的详细教程
微信支付教程jsapi篇:
微信支付教程扫码模式一:
微信支付教程刷卡支付:
更多关于thinkphp相关内容感兴趣的读者可查看本站专题:《thinkphp入门教程》、《thinkphp模板操作技巧总结》、《thinkphp常用方法总结》、《codeigni小桔灯怎么做ter入门教程》、《ci(codeigniter)框架进阶教程》、《zend framework框架入门教程》及《php模板技术总结》。
希望本文所述对大家基于thinkphp框架的php程序设计有所帮助。
本文发布于:2023-04-07 10:51:55,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/7905394bfe7b22f87c3c8817f7bccb42.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:ThinkPHP框架整合微信支付之Native 扫码支付模式二图文详解.doc
本文 PDF 下载地址:ThinkPHP框架整合微信支付之Native 扫码支付模式二图文详解.pdf
留言与评论(共有 0 条评论) |