本文实例讲述了thinkphp框架整合微信支付之native 扫码支付模式一。分享给大家供大家参考,具体如下:
大家好,这篇文章是继微信支付jsapi篇之后的微信支付系列教程第二篇:扫码支付之模式一介绍下扫码支付目前有两种模式,模式一比模式二稍微复杂点,至于模式一与模式二的具体内容,流程,微信开发文档都有详细介绍,这里就不多说废话,接下来赶紧上教程!
首先我们还是一样,导入微信支付的类库:
接下来是public下的文件:
这里的配置跟jsapi支付一样,不需要改动
具体关于文件介绍请参考jsapi支付,这里就不再说明了 链接地址:
接下来直接看控制器部分的代码:
step1:同样,先初始化引入wxpaypubhelper类库
/***初始化*/publicfunction_initialize(){//引入wxpaypubhelpervendor('wxpaypubhelper.wxpaypubhelper');}
step2:展示扫码页面需要先生存二维码链接
publicfunctionnative_pay(){//设置静态链接$nativelink=new\nativelink_pub();//设置静态链接参数//计划生育条例实施细则设置必填参数//appid已填,商户无需重复填写//mch_id已填,商户无需重复填写//noncestr已填,商户无需重复填写//time_stamp已填,商户无需重复填写//sign已填,商户无需重复填写$product_id=c('wxpayconf_pub.appid')."static";//自定义商品id$nativelink->tparameter("product_id",$product_id);//商品id//获取链接$product_url=$nativelink->geturl();//使用短链接转换接口$shorturl=new\shorturl_pub();//设置必填参数//appid已填,商户无需重复填写//mch_id已填,商户无需重复填写//noncestr已填,商户无需重复填写//sign已填,商户无需重复填写$shorturl->tparameter("long_url",$product_url);//url链接//获取短链接$codeurl=$shorturl->getshorturl();$this->assign('product_url',$product_url);$this->assign('codeurl',$codeurl);$this->display();}
以上代码对应native_pay.html页面
<!doctypehtml><html><head><metachart="utf-8"><title>微信安全支付</title></head><body><divalign="center"id="qrcode"><p>扫我,扫我</p></div><divalign="center"><ahref="#" rel="external nofollow" >返回首页</a></div></body><scriptsrc="__public__/js/qrcode.js"></script><script>varurl="<?phpecho$product_url;?>";//参数1表示图像大小,取值范围1-10;参数2表示质量,取值范围'l','m','q','h'varqr=qrcode(10,'m');qr.adddata(url);qr.make();vardom=document.createelement('div');dom.innerhtml=qr.createimgtag();varelement=document.getelementbyid("qrcode");element.appendchild(dom);</script></html>
这里注意生存二维码的js地址,我放在了public下的js目录下
step3:扫码之后,就会提交给我们公众平台native配置的地址对应的去方法处理公众平台navtive配置:配置地址 http://您的域名/pay/index.php/home/wxnative/todopost
对应的todopost方法在控制器中:
publicfunctiontodopost(){//以log文件形式记录回调信息,用于调试$log_name=__root__."/public/native_call.log";//使用native通知接口$nativecall=new\nativecall_pub();//接收微信请求$xml=$globals['http_raw_post_data'];log_result($log_name,"【接收到的native通知】:\n".$xml."\n");$nativecall->savedata($xml);if($nativecall->checksign()==fal){$nativecall->treturnparameter("return_code","fail");//返回状态码$nativecall->treturnparameter("return_msg","签名失败");//返回信息}el{//提取product_id$product_id=$nativecall->getproductid();//使用统一支付接口$unifiedorder=new\unifiedorder_pub();//根据不同的$product_id设定对应的下单参数,此处只举例一种switch($product_id){cac('wxpayconf_pub.appid')."static"://与native_call_qrcode.php中的静态链接二维码对应//设置统一支付接口参数//设置必填参数//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_trade_no);//商户订单号$unifiedorder->tparameter("product_id","$product_id");//商品id$unifiedorder->tparameter("total_fee","1");//总金额$unifiedorder->tparameter("notify_url",c('wxpayconf_pub.notify_url'));//通知地址$unifiedorder->tparameter("trade_type","native");//交易类型$unifiedorder->tparameter("product_id",$product_id);//用户标识//非必填参数,商户可根据实际情况选填//$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");//用户标识//获取prepay_id$prepay_id=$unifiedorder->getprepayid();//设置返回码//设置必填参数//appid已填,商户无需重复填写//mch_id已填,商户无需重复填写//noncestr已填,商户无需重复填写//sign已填,商户无需重复填写$nativecall->treturnparameter("return_code","success");//返回状态码$nativecall->treturnparameter("result_code","success");//业务结果$nativecall->treturnparameter("prepay_id",$prepay_id);//预支付idbreak;default://设置返回码//设置必填参数//appid已填,商户无需重复填写//mch_id已填,商户无需重复填写//noncestr已填,商户无需重复填写//sign已填,商户无需重复填写$nativecall->treturnparameter("return_code","success");//返回状态码$nativecall->treturnparameter("result_code","fail");//业务结果$nativecall->treturnparameter("err_code_des","此商品无效");//业务结果break;}}//将结果返回微信$returnxml=$nativecall->returnxml();log_result($log_name,"【返回微信的native响应】:\n".$returnxml."\n");echo$returnxml;}
其实到这里你已经完成了扫码支付模式一的功能
step4:接下来写一下异步通知处理,与jsapi支付一样:
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;//==商户根据实际情况设置相comeout应的处理流程,此处仅作举例=======//以log文件形式记录回调信息//$log_=newlog_();$log_name=__root__."/public/notify_url.log";//log文件路径$this->log_result($log_name,"【接收到的notify通知】:\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"){//此处应该更新老师我想对你说300字一下订单状态,商户自行增删操作log_result($log_name,"【业永远流传 不可磨灭务出错】:\n".$xml."\n");}el{//此处应该更新一下订单状态,商户自行增删操作log_result($log_name,"【支付成功】:\n".$xml."\n");}//商户自行增加处理流程,//例如:更新订单状态//例如:数据库操作//例如:推送支付完成信息}}
native扫码支付模式一demo到此就可以啦
下面展示下测试的截图:
扫码界面:
扫码结果:
有问题请留言,下面还会介绍微信扫码支付模式二的详细教程
微信支付教程jsapi篇:
微信支付教程扫码模式二:
微信支付教程刷卡支付:
更多关于thinkphp相关内容感兴趣的读者可查看本站专题:《thinkphp入门教程》、《thinkphp模板操作技巧总结》、《thinkphp常用方法总结》、《codeigniter入门教程》、《ci(codeigniter)框架进阶教程》、《zend framework框架入门教程》及东莞市第六高级中学《php模板技术总结》。
希望本文所述对大家基于thinkphp框架的php程序设计有所帮助。
本文发布于:2023-04-07 10:52:31,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/0c041fcc8c94204c24f97835b6d522ce.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:ThinkPHP框架整合微信支付之Native 扫码支付模式一图文详解.doc
本文 PDF 下载地址:ThinkPHP框架整合微信支付之Native 扫码支付模式一图文详解.pdf
留言与评论(共有 0 条评论) |