Skip to content
赞助

支付宝取消订单

方法名参数返回值
cancelarray $orderCollection

注意

更多功能请查看源码,文档里仅仅列举了一些常用的功能。

取消订单操作

php
Pay::config($this->config);

$order = [
    'out_trade_no' => '1514027114',
    // '_action' => 'pos', // 默认值,取消刷卡订单
    // '_action' => 'mini', // 取消小程序订单
    // '_action' => 'scan', // 取消扫码订单
];

$result = Pay::alipay()->cancel($order);

配置参数

所有订单配置参数和官方无任何差别,兼容所有功能,所有参数请参考以下 API 查看「请求参数」一栏。

Released under the MIT License.