获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
同一个订单号,关闭了确实付成功了,什么情况
为何调用微信支付关闭订单api后还能发起支付?$params = array( 'appid' => $this->wxpay['appid'], 'mch_id' => $this->wxpay['mch_id'], 'nonce_str' => random(32), 'out_trade_no' => trim($trade_no), ); $params['sign'] = $this->bulidSign($params); $result = $this->requestApi('https://api.mch.weixin.qq.com/pay/closeorder', $params); if (is_error($result)) { return $result; } 为什么订单无法关闭呢,返回结果都提示关闭了,但是重新用这个订单号发起支付还是能支付怎么回事呢?
2021-10-19