From e6be8222c2be8e70515876affd966ec1d22cc65d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Mon, 19 Nov 2018 21:44:54 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E4=BF=AE=E6=94=B9=E6=94=AF?= =?UTF-8?q?=E4=BB=98=E5=AE=9D=E6=94=AF=E4=BB=98=E8=8E=B7=E5=8F=96=E6=94=AF?= =?UTF-8?q?=E4=BB=98=E9=80=9A=E7=9F=A5demo=20#20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _test/alipay-notify.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/_test/alipay-notify.php b/_test/alipay-notify.php index 5802728..311cb6a 100644 --- a/_test/alipay-notify.php +++ b/_test/alipay-notify.php @@ -22,10 +22,9 @@ try { // 实例支付对象 $pay = \We::AliPayApp($config); // $pay = new \AliPay\App($config); - if ($data = $pay->notify()) { - if (in_array($data['trade_status'], ['TRADE_SUCCESS', 'TRADE_FINISHED'])) { - // @todo 更新订单状态,支付完成 - } + $data = $pay->notify(); + if (in_array($data['trade_status'], ['TRADE_SUCCESS', 'TRADE_FINISHED'])) { + // @todo 更新订单状态,支付完成 file_put_contents('notify.txt', "收到来自支付宝的异步通知\r\n", FILE_APPEND); file_put_contents('notify.txt', '订单号:' . $data['out_trade_no'] . "\r\n", FILE_APPEND); file_put_contents('notify.txt', '订单金额:' . $data['total_amount'] . "\r\n\r\n", FILE_APPEND);