From 9dba6a72a6c5add186a2f4e115020ec4f8cbb182 Mon Sep 17 00:00:00 2001 From: Anyon Date: Tue, 30 Oct 2018 17:51:26 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E6=9B=B4=E6=96=B0=E6=94=AF?= =?UTF-8?q?=E4=BB=98=E5=AE=9D=E6=94=AF=E4=BB=98=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AliPay/Bill.php | 4 ++++ Test/alipay-app.php | 1 + Test/alipay-bill.php | 3 ++- Test/alipay-notify.php | 20 +++++++------------- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/AliPay/Bill.php b/AliPay/Bill.php index 1a95d3f..0b656c1 100644 --- a/AliPay/Bill.php +++ b/AliPay/Bill.php @@ -23,6 +23,10 @@ use AliPay\Contracts\AliPay; */ class Bill extends AliPay { + /** + * Bill constructor. + * @param array $options + */ public function __construct(array $options) { parent::__construct($options); diff --git a/Test/alipay-app.php b/Test/alipay-app.php index 0098a59..e36e0f2 100644 --- a/Test/alipay-app.php +++ b/Test/alipay-app.php @@ -21,6 +21,7 @@ $config = include "./alipay.php"; try { // 实例支付对象 $pay = new \AliPay\App($config); + // 请参考(请求参数):https://docs.open.alipay.com/api_1/alipay.trade.app.pay $result = $pay->apply([ 'out_trade_no' => time(), // 商户订单号 'total_amount' => '1', // 支付金额 diff --git a/Test/alipay-bill.php b/Test/alipay-bill.php index 38a3a11..42f7615 100644 --- a/Test/alipay-bill.php +++ b/Test/alipay-bill.php @@ -19,8 +19,9 @@ include "../include.php"; $config = include "./alipay.php"; try { -// 实例支付对象 + // 实例支付对象 $pay = new \AliPay\Bill($config); + // 请参考(请求参数):https://docs.open.alipay.com/api_15/alipay.data.dataservice.bill.downloadurl.query $result = $pay->apply([ 'bill_date' => '2017-11-03', // 账单时间(日账单yyyy-MM-dd,月账单 yyyy-MM) 'bill_type' => 'signcustomer', // 账单类型(trade指商户基于支付宝交易收单的业务账单,signcustomer是指基于商户支付宝余额收入及支出等资金变动的帐务账单) diff --git a/Test/alipay-notify.php b/Test/alipay-notify.php index 5c05406..8824f60 100644 --- a/Test/alipay-notify.php +++ b/Test/alipay-notify.php @@ -19,9 +19,8 @@ include "../include.php"; $config = include "./alipay.php"; // 实例支付对象 -$pay = new \Pay\Pay($config); - -if ($pay->driver('alipay')->gateway()->verify($_POST)) { +$pay = new \AliPay\App($config); +if ($pay->verify($_POST)) { file_put_contents('notify.txt', "收到来自支付宝的异步通知\r\n", FILE_APPEND); file_put_contents('notify.txt', '订单号:' . $_POST['out_trade_no'] . "\r\n", FILE_APPEND); file_put_contents('notify.txt', '订单金额:' . $_POST['total_amount'] . "\r\n\r\n", FILE_APPEND); @@ -29,14 +28,9 @@ if ($pay->driver('alipay')->gateway()->verify($_POST)) { file_put_contents('notify.txt', "收到异步通知\r\n", FILE_APPEND); } - -// 下面是项目的真实代码 -/* -$pay = new \Pay\Pay(config('pay')); -$notifyInfo = $pay->driver('alipay')->gateway('app')->verify(request()->post('', '', null)); -p($notifyInfo, false, RUNTIME_PATH . date('Ymd') . '_notify.txt'); -if (in_array($notifyInfo['trade_status'], ['TRADE_SUCCESS', 'TRADE_FINISHED'])) { - // 更新订单状态 - $this->updateOrder($notifyInfo['out_trade_no'], $notifyInfo['trade_no'], $notifyInfo['receipt_amount'], 'alipay'); +// 下面是支付通知处理 +$pay = new \AliPay\App($config); +$notify = $pay->verify($_POST); +if (in_array($notify['trade_status'], ['TRADE_SUCCESS', 'TRADE_FINISHED'])) { + // @todo 更新订单状态,支付完成 } -*/ \ No newline at end of file