Package Data | |
---|---|
Maintainer Username: | hyperbolaa |
Maintainer Contact: | chongyu366@gmail.com (chong yu) |
Package Create Date: | 2017-03-27 |
Package Last Update: | 2019-07-03 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-11 15:00:15 |
Package Statistics | |
---|---|
Total Downloads: | 510 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 24 |
Total Watchers: | 2 |
Total Forks: | 8 |
Total Open Issues: | 0 |
version5.0.0 与 version5.1.0 验签方式不一样
本项目使用的是version5.0.0 (使用其他版本会存在问题)
composer require hyperbolaa/unionpay dev-master
'providers' => [
// ...
Hyperbolaa\Unionpay\UnionpayServiceProvider::class,
]
运行 `php artisan vendor:publish` 命令,
发布配置文件到你的项目中。
$unionpay = app('unionpay.mobile');
$unionpay->setOrderId('order_id');
$unionpay->setTxnAmt('order_amount');
$unionpay->setTxnTime('req_time');
//返回签名后的支付参数给移动端的sdk-》{539512046523081531300}
return $unionpay->consume();
$unionpay = app('unionpay.wap');
$unionpay->setOrderId('order_id');
$unionpay->setTxnAmt('order_amount');
$unionpay->setTxnTime('req_time');
//返回一个表单
return $unionpay->consume();
public function unionpayNotify()
{
if (! app('unionpay.mobile')->verify()) {
Log::notice('unionpay notify post data verification fail.', [
'data' => Request::instance()->getContent()
]);
return 'fail';
}
// 判断通知类型。
if (Input::get('respCode') == '00') {
// TODO: 支付成功,取得订单号进行其它相关操作。
Log::debug('unionpay notify get data verification success.', [
'out_trade_no' => Input::get('orderId'),
'trade_no' => Input::get('queryId')
]);
}
return 'success';
}
composer require hyperbolaa/unionpay:1.0
如果真心觉得项目帮助到你,为你节省了成本,欢迎鼓励一下。
如果有什么问题,可通过以下方式联系我。提供有偿技术服务。
也希望更多朋友可用提供代码支持。欢迎交流与打赏。
加入QQ群:60973229
不错,我要鼓励一下