Modify first result_code to return_code

This commit is contained in:
Rootrl 2019-04-10 15:26:04 +08:00 committed by GitHub
parent f204629dc5
commit 83506ac24c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ try {
// 4. 获取通知参数
$data = $wechat->getNotify();
if ($data['result_code'] === 'SUCCESS' && $data['result_code'] === 'SUCCESS') {
if ($data['return_code'] === 'SUCCESS' && $data['result_code'] === 'SUCCESS') {
// @todo 去更新下原订单的支付状态
$order_no = $data['out_trade_no'];
@ -39,4 +39,4 @@ try {
// 出错啦,处理下吧
echo $e->getMessage() . PHP_EOL;
}
}