php实现微信支付
微信支付文档地址:
在php下实现微信支付,这里我使用了easywechat
这里我是在yii框架实现的,安装easywechat插件
composer require jianyan74/yii2-easy-wechat
一:配置easywechat
1:在config/main.php 的 component中添加easywechat的sdk
'components' => [
// ...
'wechat' => [
'class' => 'jianyan\easywechat\wechat',
'useroptions' => [], // 用户身份类参数
'sessionparam' => 'wechatuser', // 微信用户信息将存储在会话在这个密钥
'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);
} else {
throw new yii\base\errorexception('微信支付异常, 请稍后再试');
}
return $this->render('wxpay', [
'jssdk' => $payment->jssdk, // $app通过上面的获取实例来获取
'config' => $config
]);
2:在wxpay.php文件中发起支付
//数组内为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();
}
在异步回调地址中获取微信支付回调只需要使用如下方法即可:
$payment = yii::$app->wechat->payment;
$response = $payment->handlepaidnotify(function($message, $fail) {
//支付结果逻辑,只有在函数里 return true; 才代表处理完成
});
$response->send();
根据如上步骤就可以实现微信支付
php实现支付宝支付
支付宝支付文档地址:
一:在php中安装支付宝插件
composer require alipaysdk/easysdk
alipaysdk/easysdk的github地址:
二:php实现支付宝支付
1:配置支付宝
/**
* 支付宝配置
*/
public static function getoptions()
{
$options = new config();
$options->protocol = 'https';
$options->gatewayhost = 'openapi.alipay.com';
$options->signtype = 'rsa2';
$options->appid = '';
// 为避免私钥随源码泄露,推荐从文件中读取私钥字符串而不是写入源码中
$options->merchantprivatekey = '';
$options->alipaycertpath = '';
$options->alipayrootcertpath = '';
$options->merchantcertpath = '';
//注:如果采用非证书模式,则无需赋值上面的三个证书路径,改为赋值如下的支付宝公钥字符串即可
// $options->alipaypublickey = '';
//可设置异步通知接收服务地址(可选)
$options->notifyurl = "";
//可设置aes密钥,调用aes加解密相关接口时需要(可选)
//$options->encryptkey = "";
return $options;
}
2:实现支付宝支付
//加载支付宝配置
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实现微信和支付宝支付内容请搜索萬仟网以前的文章或继续浏览下面的相关文章希望大家以后多多支持萬仟网!
如您对本文有疑问或者有任何想说的,请点击进行留言回复,万千网友为您解惑!