首页 > 作文

php实现微信和支付宝支付的示例代码

更新时间:2023-04-08 21:57:11 阅读: 评论:0

php实现微信支付

微信支付文档地址:

在php下实现微信支付,这里我使用了easywechat

这里我是在yii框架实现的,安装easywechat插件

compor require jianyan74/yii2-easy-wechat

一:配置easywechat

1:在config/main.php 的 component中添加easywechat的sdk

'components' => [   // ...   'wechat' => [     'class' => 'jianyan\easywechat\wechat',     'uroptions' => [], // 用户身份类参数     'ssionparam' => 'wechatur', // 微信用户信息将存储在会话在这个密钥     'returnurlparam' => '_wechatreturnurl', // returnurl 存储在会话中     'rebinds' => [ // 自定义服务模块        // 'cache' => 'common\components\cache',     ]   ],   // ... ] 

2:在config/params.php中设置基础配置信息和微信支付信息

// 微信配置 具体可参考easywechat  'wechatconfig' => [], // 微信支付配置 具体可参考easywechat 'wechatpaymentconfig' => [], // 微信小程序配置 具体可参考easywechat 'wechatminiprogramconfig' => [], // 微信开放平台第三方平台配置 具体可参考easywechat 'wechatopenplatformconfig'摩尔多瓦美女 => [], // 微信企业微信配置 具体可参考easywechat 'wechatworkconfig' => [], // 微信企业微信开放平台 具体可参考easywechat 'wechatopenworkconfig' => [], // 微信小微商户 具体可参考easywechat 'wechatmicromerchantconfig' => [], 

具体配置方法可以参考github的说明:

二:实现微信支付

1:微信支付api

$data = [   'body' => '',//支付描述   'out_trade_no' => '',//订单号   'total_fee' => '',//支付金额   'notify_url' => '', // 支付结果通知网址,如果不设置则会使用配置里的默认地址   'trade_type' => 'jsapi',//支付方式   'openid' => '',//用户openid ]; // 生成支付配置 $payment = yii::$app->wechat->payment; $result = $payment->order->unify($data); if ($result['return_code'] == 'success') {   $prepayid = $result['prepay_id'];   $config = $payment->jssdk->sdkconfig($prepayid); } el {   throw new yii\ba\errorexception('微信支付异常, 请稍后再试'); }  return $this->render('wxpay', [   'jssdk' => $payment->jssdk, // $app通过上面的获取实例来获取   'config' => $config ]); 

2:在wxpay.php文件中发起支付

<script src="/d/file/titlepic/jweixin-1.4.0.js" type="text/javascript" chart="utf-8"></script> <script type="text/javascript" chart="utf-8">   //数组内为jssdk授权可用的方法,按需添加,详细查看微信jssdk的方法   wx.config(<?php echo $jssdk->buildconfig(array('choowxpay'), true) ?>);   function onbridgeready(){     // 发起支付     wx.choowxpay({       timestamp: <?= $config['timestamp'] ?>,       noncestr: '<?= $config['noncestr'] ?>',       package: '<?= $config['package'] ?>',       signtype: '<?= $config['signtype'] ?>',       paysign: '<?= $config['paysign'] ?>', // 支付签名       success: function (res) {         // 支付成功后的回调函数       },       cancel: function(r) {         //支付取消后的回调函数       },     });   }   if (typeof weixinjsbridge == "undefined"){     if( document.addeventlistener ){       document.addeventlistener('weixinjsbridgeready', onbridgeready, fal);     }el if (document.attachevent){       document.attachevent('weixinjsbridgeready', onbridgeready);       document.attach冬天的太阳微微笑event('onweixinjsbridgeready', onbridgeready);     }   }el{     onbridgeready();   } </script> 

在异步回调地址中获取微信支付回调只需要使用如下方法即可:

$payment = yii::$app->wechat->payment; $respon = $payment->handlepaidnotify(function($message, $fail) {   //支付结果逻辑,只有在函数里 return true; 才代表处理完成 }); $respon->nd();

根据如上步骤就可以实现关于教育的素材微信支付

php实现支付宝支付

支付宝支付文档地址:

一:在php中安装支付宝插件

compor require alipaysdk/easysdk

alipaysdk/easysdk的github地址:

二:php实现支付宝支付

1:配置支付宝

/**  * 支付宝配置  */ public static function getoptio与春天有关的诗ns() {   $options = new config();   $options->protocol = 'https';   $options->gatewayhost = 'openapi.alipay.com';   $options->signtype = 'rsa2';   $options->appid = '<-- 请填写您的appid,例如:2019022663440152 -->';   // 为避免私钥随源码泄露,推荐从文件中读取私钥字符串而不是写入源码中   $options->merchantprivatekey = '<-- 请填写您的应用私钥,例如:miievqibadanb ... ... -->';   $options->alipaycertpath = '<-- 请填写您的支付宝公钥证书文件路径,例如:/foo/alipaycertpublickey\_rsa2.crt -->';   $options->alipayrootcertpath = '<-- 请填写您的支付宝根证书文件路径,例如:/foo/alipayrootcert.crt" -->';   $options->merchantcertpath = '<-- 请填写您的应用公钥证书文件路径,例如:/foo/appcertpublickey\_2019051064521003.crt -->';   //注:如果采用非证书模式,则无需赋值上面的三个证书路径,改为赋值如下的支付宝公钥字符串即可   // $options->alipaypublickey = '<-- 请填写您的支付宝公钥,例如:miibijanbg... -->';   //可设置异步通知接收服务地址(可选)   $options->notifyurl = "<-- 请填写您的支付类接口异步通知接收服务地址,例如:https://www.test.com/callback -->";   //可设置aes密钥,调用aes加解密相关接口时需要(可选)   //$options->encryptkey = "<-- 请填写您的aes密钥,例如:aa4btz4tspm2wnxlb1thqa== -->";   return $options; } 

2:实现支付宝支付

//加载支付宝配置 factory::toptions(lf::getoptions()); try {   //发起api调用   $result = factory::payment()->wap()->pay('订单标题', '商户订单号', '订单总金额', '用户付款中途退出返回商户网站的地址', '支付回调地址');   $responchecker = new responchecker();   //处理响应或异常   if ($responchecke徐海星父亲r->success($result)) {     //调用成功     return $result->body;   } el {     //调用失败     $errormsg = $result->msg . $result->submsg;     throw new yii\\ba\\errorexception($errormsg);   } } catch (\\exception $e) {   throw new yii\\ba\\errorexception($e->getmessage()); }

根据如上就可以实现支付宝支付

到此这篇关于php实现微信和支付宝支付的示例代码的文章就介绍到这了,更多相关php实现微信和支付宝支付内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!

本文发布于:2023-04-08 21:56:28,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/dabb79f0132e45773d1126d208070b13.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:php实现微信和支付宝支付的示例代码.doc

本文 PDF 下载地址:php实现微信和支付宝支付的示例代码.pdf

标签:支付宝   您的   请填写   地址
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图