ASCII码 ASCII码

PHP实现微信支付(jsapi支付)和退款(无需集成支付SDK)流程教程详解

发布于:2022-04-28 10:07:03  栏目:技术文档

本篇文章给大家介绍PHP实现微信支付(jsapi支付)和退款(无需集成支付SDK)流程教程详解,使用了微信官方给的php版本的sdk,但是在使用过程中有很多问题,今天给大家讲讲不集成支付SDK直接调用支付接口实现支付和退款,感兴趣的朋友一起看看吧

之前有写过几篇文章将微信支付和退款:

1.PHP实现微信支付(jsapi支付)流程2.ThinkPHP中实现微信支付(jsapi支付)流程3.PHP实现微信申请退款

这几篇都是使用了微信官方给的PHP版本的SDK,进行支付的时候写代码可以省不少事,步骤也挺简化,但是集成SDK有很多坑,很多人说引入的SDK老报错,或者说官方SDK本身有不少错误,改起来很麻烦,也确实挺麻烦的,对于新手搞支付很容易被绕进去,那么今天就来讲讲不集成支付SDK直接调用支付接口实现支付和退款。

前期准备:

1.当然了,还是要有一个微信认证服务号,并且开通了微信支付;

2.在微信商户后台配置好支付授权目录,同时准备好支付的Api证书(支付用不到,退款的时候使用)

3.调用接口支付的话,必须要先知道该用户的openid,所以要先知道怎么获取用户的openid,这个也很简单,我之前也有文章讲怎么获取用户的openid,详见文章微信公众号获取用户的openid。

好了,话不多说,直接贴上主要代码:```php/**

  • 微信支付请求接口(POST)
  • @param string $openid openid
  • @param string $body 商品简单描述
  • @param string $order_sn 订单编号
  • @param string $total_fee 金额
  • @return json的数据/public function wxpay($openid,$total_fee,$body,$order_sn){$config = $this->config;//统一下单参数构造$unifiedorder = array(‘appid’ => $config[‘appid’],‘mch_id’ => $config[‘mch_id’],‘nonce_str’ => self::getNonceStr(),‘body’ => $body,‘out_trade_no’ => $order_sn,‘total_fee’ => $total_fee 100,‘spbill_create_ip’ => self::getip(),‘notify_url’ => ‘http://'.$_SERVER['HTTP_HOST'].'/notify.php‘,‘trade_type’ => ‘JSAPI’,‘openid’ => $openid);$unifiedorder[‘sign’] = self::makeSign($unifiedorder);//return $unifiedorder;//请求数据,统一下单$xmldata = self::array2xml($unifiedorder);$url = ‘https://api.mch.weixin.qq.com/pay/unifiedorder‘;$res = self::curl_post_ssl($url, $xmldata);if(!$res){return array(‘status’=>0, ‘msg’=>”Can’t connect the server” );}// 这句file_put_contents是用来查看服务器返回的结果 测试完可以删除了//file_put_contents(‘./log.txt’,$res,FILE_APPEND);$content = self::xml2array($res);if(strval($content[‘result_code’]) == ‘FAIL’){return array(‘status’=>0, ‘msg’=>strval($content[‘err_code’]).’:’.strval($content[‘err_code_des’]));}if(strval($content[‘return_code’]) == ‘FAIL’){return array(‘status’=>0, ‘msg’=>strval($content[‘return_msg’]));}$time = time();settype($time, “string”); //jsapi支付界面,时间戳必须为字符串格式$resdata = array(‘appId’ => strval($content[‘appid’]),‘nonceStr’ => strval($content[‘nonce_str’]),‘package’ => ‘prepay_id=’.strval($content[‘prepay_id’]),‘signType’ => ‘MD5’,‘timeStamp’ => $time);$resdata[‘paySign’] = self::makeSign($resdata);return json_encode($resdata);}/**
  • 微信退款(POST)
  • @param string(28) $transaction_id 在微信支付的时候,微信服务器生成的订单流水号,在支付通知中有返回
  • @param string $out_refund_no 商品简单描述
  • @param string $total_fee 微信支付的时候支付的总金额(单位:分)
  • @param string $refund_fee 此次要退款金额(单位:分)
  • @return string xml格式的数据/public function refund($transaction_id,$out_refund_no,$total_fee,$refund_fee){$config = $this->config;//退款参数$refundorder = array(‘appid’ => $config[‘appid’],‘mch_id’ => $config[‘mch_id’],‘nonce_str’ => self::getNonceStr(),‘transaction_id’=> $transaction_id,‘out_refund_no’ => $out_refund_no,‘total_fee’ => $total_fee 100,‘refund_fee’ => $refund_fee * 100);$refundorder[‘sign’] = self::makeSign($refundorder);//请求数据,进行退款$xmldata = self::array2xml($refundorder);$url = ‘https://api.mch.weixin.qq.com/secapi/pay/refund‘;$res = self::curl_post_ssl($url, $xmldata);if(!$res){return array(‘status’=>0, ‘msg’=>”Can’t connect the server” );}// 这句file_put_contents是用来查看服务器返回的结果 测试完可以删除了//file_put_contents(‘./log3.txt’,$res,FILE_APPEND);$content = self::xml2array($res);if(strval($content[‘result_code’]) == ‘FAIL’){return array(‘status’=>0, ‘msg’=>strval($content[‘err_code’]).’:’.strval($content[‘err_code_des’]));}if(strval($content[‘return_code’]) == ‘FAIL’){return array(‘status’=>0, ‘msg’=>strval($content[‘return_msg’]));}return $content;}
    1. 这是封装好的类,使用起来也超级简单
    2. ```php
    3. <?php
    4. require_once "wxpay.class.php";
    5. $config = array(
    6. 'wxappid' => 'wx123456789876',
    7. 'mch_id' => '123456789',
    8. 'pay_apikey' => '123456789876123456789876123456789876'
    9. );
    10. $wxpay = new WxPay($config);
    11. $result = $wxpay->paytest();
    12. ?>
    13. <html>
    14. <head>
    15. <meta http-equiv="content-type" content="text/html;charset=utf-8"/>
    16. <meta name="viewport" content="width=device-width, initial-scale=1"/>
    17. <title>江南极客支付</title>
    18. <script type="text/javascript">
    19. //调用微信JS api 支付
    20. function jsApiCall()
    21. {
    22. WeixinJSBridge.invoke(
    23. 'getBrandWCPayRequest',<?php echo $result; ?>,
    24. function(res){
    25. WeixinJSBridge.log(res.err_msg);
    26. //alert(res);
    27. if(res.err_msg == "get_brand_wcpay_request:ok"){
    28. alert("支付成功!");
    29. }else if(res.err_msg == "get_brand_wcpay_request:cancel"){
    30. alert("用户取消支付!");
    31. }else{
    32. alert("支付失败!");
    33. }
    34. }
    35. );
    36. }
    37. function callpay()
    38. {
    39. if (typeof WeixinJSBridge == "undefined"){
    40. if( document.addEventListener ){
    41. document.addEventListener('WeixinJSBridgeReady', jsApiCall, false);
    42. }else if (document.attachEvent){
    43. document.attachEvent('WeixinJSBridgeReady', jsApiCall);
    44. document.attachEvent('onWeixinJSBridgeReady', jsApiCall);
    45. }
    46. }else{
    47. jsApiCall();
    48. }
    49. }
    50. </script>
    51. </head>
    52. <body>
    53. <br/>
    54. <font color="#9ACD32"><b>该笔订单支付金额为<span style="color:#f00;font-size:50px">1分</span>钱</b></font><br/><br/>
    55. <font color="#9ACD32"><b><span style="color:#f00;font-size:50px;margin-left:40%;">1分</span>钱也是爱</b></font><br/><br/>
    56. <div align="center">
    57. <button style="width:210px; height:50px; border-radius: 15px;background-color:#FE6714; border:0px #FE6714 solid; cursor: pointer; color:white; font-size:16px;" type="button" onclick="callpay()" >果断买买买^_^</button>
    58. </div>
    59. </body>
    60. </html>
相关推荐
阅读 +