收藏
回答

为何调用微信支付关闭订单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;
}


为什么订单无法关闭呢,返回结果都提示关闭了,但是重新用这个订单号发起支付还是能支付怎么回事呢?

回答关注问题邀请回答
收藏

2 个回答

登录 后发表内容
问题标签