mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 09:52:47 +08:00
[更新]修改支付宝支付获取支付通知demo #20
This commit is contained in:
parent
0c824f2bce
commit
e6be8222c2
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user