方法名 | 参数 | 返回值 |
---|---|---|
close | string/array $order | Collection |
例子
$order = [
'out_trade_no' => '1514027114',
];
// $order = '1514027114';
$result = $wechat->close($order);
订单配置参数
所有订单配置参数和官方无任何差别,兼容所有功能,所有参数请参考这里,查看「请求参数」一栏。
APP/小程序订单关闭
如果您需要关闭 APP/小程序
的订单,请传入参数:['type' => 'app']
/['type' => 'miniapp']
返回值
返回 Collection 类型,可以通过 $collection->xxx
得到服务器返回的数据。