Skip to content
赞助

微信查询订单

方法名参数返回值
queryarray $orderCollection

查询支付订单

php
Pay::config($config);

$order = [
    'out_trade_no' => '1217752501201407033233368018',
    // '_action' => 'jsapi', // 默认为 jsapi
    // '_action' => 'app', // 查询 App 支付
    // '_action' => 'h5', // 查询 H5 支付
    // '_action' => 'mini', // 查询小程序支付
    // '_action' => 'native', // 查询 Native 支付
    // '_action' => 'combine', // 查询合单支付
];

$result = Pay::wechat()->query($order);

订单配置参数

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

查询退款订单

php
Pay::config($config);

$order = [
    'transaction_id' => '1217752501201407033233368018',
    '_action' => 'refund',
    // '_action' => 'refund_jsapi', // 查询 jsapi 退款订单,默认
    // '_action' => 'refund_app', // 查询 App 退款订单
    // '_action' => 'refund_h5', // 查询 H5 退款订单
    // '_action' => 'refund_mini', // 查询小程序退款订单
    // '_action' => 'refund_native', // 查询 Native 退款订单
    // '_action' => 'refund_combine', // 查询合单退款订单
];

$result = Pay::wechat()->query($order);

订单配置参数

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

查询合单支付订单

php
Pay::config($config);

$order = [
    'combine_out_trade_no' => '1217752501201407033233368018',
];
//$order = [
//    'transaction_id' => '1217752501201407033233368018',
//    '_action' => 'combine',
//];

$result = Pay::wechat()->query($order);

订单配置参数

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

查询转账订单

php
Pay::config($config);

$order = [
    'out_batch_no' => '1217752501201407033233368018',
    'out_detail_no' => '1217752501201407033233368018',
    '_action' => 'transfer',
];

$result = Pay::wechat()->query($order);

订单配置参数

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

Released under the MIT License.