服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - PHP教程 - php实现微信和支付宝支付的示例代码

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

2021-10-22 14:14huaweichenai PHP教程

这篇文章主要介绍了php实现微信和支付宝支付的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

php实现微信支付

微信支付文档地址:https://pay.weixin.qq.com/wiki/doc/api/index.html

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

这里我是在Yii框架实现的,安装EasyWeChat插件

?
1
composer require jianyan74/yii2-easy-wechat

一:配置EasyWeChat

1:在config/main.php 的 component中添加EasyWeChat的SDK

?
1
2
3
4
5
6
7
8
9
10
11
12
13
'components' => [
  // ...
  'wechat' => [
    'class' => 'jianyan\easywechat\Wechat',
    'userOptions' => [], // 用户身份类参数
    'sessionParam' => 'wechatUser', // 微信用户信息将存储在会话在这个密钥
    'returnUrlParam' => '_wechatReturnUrl', // returnUrl 存储在会话中
    'rebinds' => [ // 自定义服务模块 
      // 'cache' => 'common\components\Cache',
    ]
  ],
  // ...
]

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

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 微信配置 具体可参考EasyWechat 
'wechatConfig' => [],
// 微信支付配置 具体可参考EasyWechat
'wechatPaymentConfig' => [],
// 微信小程序配置 具体可参考EasyWechat
'wechatMiniProgramConfig' => [],
// 微信开放平台第三方平台配置 具体可参考EasyWechat
'wechatOpenPlatformConfig' => [],
// 微信企业微信配置 具体可参考EasyWechat
'wechatWorkConfig' => [],
// 微信企业微信开放平台 具体可参考EasyWechat
'wechatOpenWorkConfig' => [],
// 微信小微商户 具体可参考EasyWechat
'wechatMicroMerchantConfig' => [],

具体配置方法可以参考GitHub的说明:https://github.com/jianyan74/yii2-easy-wechat

二:实现微信支付

1:微信支付api

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$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);
} else {
  throw new yii\base\ErrorException('微信支付异常, 请稍后再试');
return $this->render('wxpay', [
  'jssdk' => $payment->jssdk, // $app通过上面的获取实例来获取
  'config' => $config
]);

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

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<script src="http://res.wx.qq.com/open/js/jweixin-1.4.0.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
  //数组内为jssdk授权可用的方法,按需添加,详细查看微信jssdk的方法
  wx.config(<?php echo $jssdk->buildConfig(array('chooseWXPay'), true) ?>);
  function onBridgeReady(){
    // 发起支付
    wx.chooseWXPay({
      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, false);
    }else if (document.attachEvent){
      document.attachEvent('WeixinJSBridgeReady', onBridgeReady);
      document.attachEvent('onWeixinJSBridgeReady', onBridgeReady);
    }
  }else{
    onBridgeReady();
  }
</script>

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

?
1
2
3
4
5
$payment = Yii::$app->wechat->payment;
$response = $payment->handlePaidNotify(function($message, $fail) {
  //支付结果逻辑,只有在函数里 return true; 才代表处理完成
});
$response->send();

根据如上步骤就可以实现微信支付

php实现支付宝支付

支付宝支付文档地址:https://opendocs.alipay.com/open/00y8k9

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

?
1
composer require alipaysdk/easysdk

alipaysdk/easysdk的GitHub地址:https://github.com/alipay/alipay-easysdk/tree/master/php

二:php实现支付宝支付

1:配置支付宝

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
 * 支付宝配置
 */
public static function getOptions()
{
  $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:实现支付宝支付

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//加载支付宝配置
Factory::setOptions(self::getOptions());
try {
  //发起API调用
  $result = Factory::payment()->wap()->pay('订单标题', '商户订单号', '订单总金额', '用户付款中途退出返回商户网站的地址', '支付回调地址');
  $responseChecker = new ResponseChecker();
  //处理响应或异常
  if ($responseChecker->success($result)) {
    //调用成功
    return $result->body;
  } else {
    //调用失败
    $errorMsg = $result->msg . $result->subMsg;
    throw new yii\\base\\ErrorException($errorMsg);
  }
} catch (\\Exception $e) {
  throw new yii\\base\\ErrorException($e->getMessage());
}

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

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

原文链接:https://segmentfault.com/a/1190000023573228

延伸 · 阅读

精彩推荐