From 009f1eaeb7dfdfe33d06c1fb1db871658c78f521 Mon Sep 17 00:00:00 2001 From: Anyon Date: Tue, 20 Nov 2018 17:49:16 +0800 Subject: [PATCH] Create pay-order-notify.php --- _test/pay-order-notify.php | 42 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 _test/pay-order-notify.php diff --git a/_test/pay-order-notify.php b/_test/pay-order-notify.php new file mode 100644 index 0000000..3597f02 --- /dev/null +++ b/_test/pay-order-notify.php @@ -0,0 +1,42 @@ +getNotify(); + if ($data['result_code'] === 'SUCCESS' && $data['result_code'] === 'SUCCESS') { + // @todo 去更新下原订单的支付状态 + $order_no = $data['out_trade_no']; + + // 返回接收成功的回复 + ob_clean(); + echo $wechat->getNotifySuccessReply(); + } + +} catch (Exception $e) { + + // 出错啦,处理下吧 + echo $e->getMessage() . PHP_EOL; + +} \ No newline at end of file