API文档

本文档介绍如何调用 大猫码支付 接口,请仔细阅读后进行开发对接。

接口说明

接口采用 HTTP 协议,支持 GET 和 POST 请求方式,参数编码格式为 UTF-8。

接口地址

BASE https://pay.xn--6krz1l.xn--io0a7i

支付方式

支付宝
alipay
微信支付
wxpay
QQ钱包
qqpay
USDT
usdt

Submit 支付请求

页面跳转方式,调用后直接跳转到支付页面,适合网页端对接。

GET POST https://pay.xn--6krz1l.xn--io0a7i/submit.php

请求参数

参数必填类型说明
pid必填int商户ID
type必填string支付方式
out_trade_no必填string商户订单号,须保证唯一
notify_url必填string异步通知地址
return_url必填string支付后跳转地址
name必填string商品名称
money必填string金额,单位元(如 10.00)
sign必填string签名字符串
sign_type必填string固定值 MD5
sitename选填string网站名称

MAPI 支付请求

返回 JSON 数据,包含支付链接和二维码信息,适合 API 对接或自定义支付页面。

GET POST https://pay.xn--6krz1l.xn--io0a7i/mapi.php

请求参数

与 Submit 接口参数相同,详见上方表格。

返回示例

{
    "code": 1,
    "msg": "获取成功",
    "trade_no": "YRPay1234520231229120000",
    "price": "10.00",
    "payurl": "https://xxx.com/pay.php/pay?trade_no=xxx",
    "qrcode": "二维码内容或链接",
    "urlscheme": ""
}

返回参数

参数说明
code1 表示成功,-1 表示失败
msg返回信息
trade_no平台订单号
price实际支付金额
payurl支付页面链接
qrcode二维码内容,可用于生成二维码

异步通知

用户支付成功后,系统会向商户设置的 notify_url 发送 GET 请求。

参数说明
pid商户ID
trade_no平台订单号
out_trade_no商户订单号
type支付方式
name商品名称
money订单金额
trade_status交易状态,成功为 TRADE_SUCCESS
sign签名
sign_type签名类型
注意:收到通知后请先验证签名,确认无误后返回 success(小写),否则系统会重复发送通知。

同步跳转

支付完成后,用户浏览器会跳转到 return_url,参数与异步通知相同。

提示:同步跳转仅作为用户体验使用,订单状态请以异步通知为准。

查询商户信息

查询当前商户的账户信息,包括余额、状态等。

GET POST https://pay.xn--6krz1l.xn--io0a7i/api.php/getuser

请求参数

参数必填说明
pid必填商户ID
key必填商户密钥

返回示例

{
    "code": 1,
    "msg": "获取成功",
    "pid": 1001,
    "username": "testuser",
    "money": "100.00",
    "status": 1,
    "vip_time": "2025-12-31 23:59:59",
    "create_time": "2024-01-01 00:00:00"
}

查询单个订单

根据订单号查询单个订单的详细信息。

GET POST https://pay.xn--6krz1l.xn--io0a7i/api.php/getorder

请求参数

参数必填说明
pid必填商户ID
key必填商户密钥
out_trade_no二选一商户订单号
trade_no二选一平台订单号

返回示例

{
    "code": 1,
    "msg": "获取成功",
    "trade_no": "YRPay1234520231229120000",
    "out_trade_no": "202312290001",
    "type": "alipay",
    "name": "测试商品",
    "money": "10.00",
    "price": "10.00",
    "status": 1,
    "addtime": "2023-12-29 12:00:00",
    "endtime": "2023-12-29 12:05:00"
}
status 状态说明:0 = 未支付,1 = 已支付

批量查询订单

分页查询商户的订单列表,支持按状态、类型、时间筛选。

GET POST https://pay.xn--6krz1l.xn--io0a7i/api.php/getorders

请求参数

参数必填说明
pid必填商户ID
key必填商户密钥
page选填页码,默认 1
limit选填每页数量,默认 20,最大 100
status选填订单状态:0=未支付 1=已支付
type选填支付类型:alipay/wxpay/qqpay/usdt
start_time选填开始时间,如 2023-12-01 00:00:00
end_time选填结束时间,如 2023-12-31 23:59:59

返回示例

{
    "code": 1,
    "msg": "获取成功",
    "total": 100,
    "page": 1,
    "limit": 20,
    "list": [
        {
            "trade_no": "YRPay1234520231229120000",
            "out_trade_no": "202312290001",
            "type": "alipay",
            "name": "商品名称",
            "money": "10.00",
            "price": "10.00",
            "status": 1,
            "addtime": "2023-12-29 12:00:00",
            "endtime": "2023-12-29 12:05:00"
        }
    ]
}

PC 监控心跳

用于 PC 客户端维持在线状态,确保监控软件正常运行。

GET POST https://pay.xn--6krz1l.xn--io0a7i/api.php/pc_monitor

请求参数

参数必填说明
act必填固定值 YRPay_Cron
account必填用户账号
password必填用户密码
wxpay_channel_id必填通道ID
wxpay_login_status必填状态:1=在线,0=离线

返回示例

{
    "code": 1,
    "msg": "Success"
}

PC 监控回调

PC 客户端监控到收款后,调用此接口进行回调通知。

GET POST https://pay.xn--6krz1l.xn--io0a7i/api.php/pc_monitor

请求参数

参数必填说明
act必填固定值 YRPay_Notify
account必填用户账号
password必填用户密码
money必填实收金额
type选填支付类型

返回示例

{
    "code": 1,
    "msg": "Success"
}

APP 监控心跳

用于手机 APP 客户端维持在线状态,一次性更新该商户下所有APP通道的心跳。

GET POST https://pay.xn--6krz1l.xn--io0a7i/api.php/app_monitor

请求参数

参数必填说明
act必填固定值 YRPay_Cron
pid必填商户ID
key必填商户密钥
说明:调用此接口会自动更新该商户下所有APP类型通道(alipay_app、wxpay_app)的在线状态,无需指定单个通道ID。

返回示例

{
    "code": 1,
    "msg": "Success",
    "updated": 3
}

返回参数

参数说明
code1 表示成功,0 表示失败
msg返回信息
updated成功更新的通道数量

APP 监控回调

APP 客户端监控到收款后,调用此接口进行回调通知。系统会根据支付类型和金额匹配对应的待支付订单。

GET POST https://pay.xn--6krz1l.xn--io0a7i/api.php/app_monitor

请求参数

参数必填说明
act必填固定值 YRPay_Notify
pid必填商户ID
key必填商户密钥
type必填支付类型:alipay / wxpay
money必填实收金额(两位小数,如 10.00)

返回示例

{
    "code": 1,
    "msg": "Success"
}

SMSF 监控心跳

用于 SMSF 应用通知转发客户端维持在线状态,一次性更新该商户下所有SMSF通道的心跳。

GET POST https://pay.xn--6krz1l.xn--io0a7i/api.php/smsf_monitor

请求参数

参数必填说明
act必填固定值 YRPay_Cron
pid必填商户ID
key必填商户密钥
说明:调用此接口会自动更新该商户下所有SMSF类型通道(alipay_smsf、wxpay_smsf)的在线状态,无需指定单个通道ID。

返回示例

{
    "code": 1,
    "msg": "Success",
    "updated": 2
}

返回参数

参数说明
code1 表示成功,0 表示失败
msg返回信息
updated成功更新的通道数量

SMSF 监控回调

SMSF 客户端监控到收款通知后,调用此接口进行回调通知。系统会根据支付类型和金额匹配对应的待支付订单。

GET POST https://pay.xn--6krz1l.xn--io0a7i/api.php/smsf_monitor

请求参数

参数必填说明
act必填固定值 YRPay_Notify
pid必填商户ID
key必填商户密钥
type必填支付类型:alipay / wxpay
money必填实收金额(两位小数,如 10.00)
说明:SMSF是一款应用通知转发APP,可以监控手机上的支付宝/微信收款通知并转发到服务器。通道类型需设置为 alipay_smsfwxpay_smsf

返回示例

{
    "code": 1,
    "msg": "Success"
}

微信收款单心跳

用于微信PC自挂(收款单免输)客户端维持在线状态,确保监控软件正常运行。

GET POST https://pay.xn--6krz1l.xn--io0a7i/api.php/wxpay_skd_monitor

请求参数

参数必填说明
act必填固定值 YRPay_Cron
account必填用户账号
password必填用户密码
channel_id必填通道ID
status必填状态:1=在线,0=离线

返回示例

{
    "code": 1,
    "msg": "Success"
}

微信收款单回调

微信PC自挂客户端监控到收款后,调用此接口进行回调通知。通过备注(系统订单号)匹配订单。

GET POST https://pay.xn--6krz1l.xn--io0a7i/api.php/wxpay_skd_monitor

请求参数

参数必填说明
act必填固定值 YRPay_Notify
account必填用户账号
password必填用户密码
remark必填收款单备注(系统订单号trade_no)
说明:创建收款单时的备注会设置为系统订单号,回调时传递相同的备注即可匹配订单。

返回示例

{
    "code": 1,
    "msg": "Success"
}

上传微信收款单的认证Cookie,用于创建收款单和获取二维码。

GET POST https://pay.xn--6krz1l.xn--io0a7i/api.php/wxpay_skd_monitor

请求参数

参数必填说明
act必填固定值 YRPay_Upload_Cookie
account必填用户账号
password必填用户密码
channel_id必填通道ID
cookie必填Base64编码的Cookie JSON

Cookie格式说明

Cookie需要先转为JSON格式,然后进行Base64编码后传递。JSON格式如下:

{
    "sid": "会话ID",
    "account_id": "账户ID",
    "shop_id": "店铺ID(可选)",
    "account_type": "账户类型: 1=门店, 2=微信, 3=收款小账本"
}

返回示例

{
    "code": 1,
    "msg": "Cookie uploaded successfully"
}
提示:通道类型需设置为 wxpay_pc_skd 才能使用此接口。Cookie可通过抓包微信收款小程序获取。

签名算法

签名用于验证请求的合法性,生成步骤如下:

  1. 将所有参数按参数名 ASCII 码从小到大排序(字典序)
  2. 将参数按 key=value 格式用 & 连接成字符串
  3. 在字符串末尾直接拼接商户密钥
  4. 对拼接后的字符串进行 MD5 加密,得到32位小写签名
signsign_type 不参与签名,空值参数也不参与。

代码示例

PHP - 发起支付

<?php
$pid = '1001';            // 商户ID
$key = 'YourSecretKey';   // 商户密钥
$apiUrl = 'https://pay.xn--6krz1l.xn--io0a7i';

$params = [
    'pid'          => $pid,
    'type'         => 'alipay',
    'out_trade_no' => date('YmdHis') . mt_rand(1000,9999),
    'notify_url'   => 'https://你的域名/notify.php',
    'return_url'   => 'https://你的域名/return.php',
    'name'         => '商品名称',
    'money'        => '10.00',
];

// 生成签名
ksort($params);
$signStr = '';
foreach ($params as $k => $v) {
    if ($v !== '') $signStr .= "{$k}={$v}&";
}
$signStr = rtrim($signStr, '&') . $key;
$params['sign'] = md5($signStr);
$params['sign_type'] = 'MD5';

// 跳转支付
header('Location: ' . $apiUrl . '/submit.php?' . http_build_query($params));
?>

PHP - 异步通知处理

<?php
$key = 'YourSecretKey';

$params = $_GET;
$sign = $params['sign'];
unset($params['sign'], $params['sign_type']);

ksort($params);
$signStr = '';
foreach ($params as $k => $v) {
    if ($v !== '') $signStr .= "{$k}={$v}&";
}
$signStr = rtrim($signStr, '&') . $key;

if (md5($signStr) !== $sign) {
    exit('签名错误');
}

if ($params['trade_status'] !== 'TRADE_SUCCESS') {
    exit('交易未成功');
}

// TODO: 处理订单逻辑
echo 'success';
?>
基本 文件 流程 错误 SQL 调试
  1. 请求信息 : 2026-02-28 14:26:24 HTTP/2.0 GET : https://pay.xn--6krz1l.xn--io0a7i/index.php/doc
  2. 运行时间 : 0.045067s [ 吞吐率:22.19req/s ] 内存消耗:428.08kb 文件加载:146
  3. 缓存信息 : 0 reads,0 writes
  1. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/public/index.php ( 1.24 KB )
  2. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/autoload.php ( 0.17 KB )
  3. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/composer/autoload_real.php ( 2.49 KB )
  4. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/composer/platform_check.php ( 0.90 KB )
  5. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/composer/ClassLoader.php ( 14.03 KB )
  6. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/composer/autoload_static.php ( 5.48 KB )
  7. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-helper/src/helper.php ( 8.34 KB )
  8. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-validate/src/helper.php ( 2.19 KB )
  9. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/helper.php ( 1.47 KB )
  10. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/stubs/load_stubs.php ( 0.16 KB )
  11. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/Exception.php ( 1.69 KB )
  12. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-container/src/Facade.php ( 2.71 KB )
  13. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/symfony/deprecation-contracts/function.php ( 0.99 KB )
  14. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/symfony/polyfill-mbstring/bootstrap.php ( 8.26 KB )
  15. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/symfony/polyfill-mbstring/bootstrap80.php ( 9.78 KB )
  16. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/symfony/var-dumper/Resources/functions/dump.php ( 1.49 KB )
  17. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-captcha/src/helper.php ( 1.37 KB )
  18. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-dumper/src/helper.php ( 0.18 KB )
  19. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/symfony/var-dumper/VarDumper.php ( 4.30 KB )
  20. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/App.php ( 15.30 KB )
  21. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-container/src/Container.php ( 15.76 KB )
  22. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/psr/container/src/ContainerInterface.php ( 1.02 KB )
  23. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/app/provider.php ( 3.34 KB )
  24. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/Http.php ( 6.04 KB )
  25. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-helper/src/helper/Str.php ( 7.29 KB )
  26. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/Env.php ( 4.68 KB )
  27. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/app/common.php ( 29.15 KB )
  28. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/helper.php ( 18.78 KB )
  29. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/Config.php ( 5.54 KB )
  30. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/config/app.php ( 0.95 KB )
  31. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/config/cache.php ( 1.38 KB )
  32. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/config/captcha.php ( 1.13 KB )
  33. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/config/console.php ( 0.23 KB )
  34. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/config/cookie.php ( 0.56 KB )
  35. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/config/database.php ( 0.82 KB )
  36. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/config/filesystem.php ( 0.61 KB )
  37. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/config/lang.php ( 0.91 KB )
  38. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/facade/Env.php ( 1.67 KB )
  39. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/config/log.php ( 1.43 KB )
  40. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/config/middleware.php ( 0.19 KB )
  41. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/config/route.php ( 1.88 KB )
  42. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/config/session.php ( 0.58 KB )
  43. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/config/trace.php ( 0.34 KB )
  44. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/config/view.php ( 0.95 KB )
  45. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/app/event.php ( 3.42 KB )
  46. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/Event.php ( 7.67 KB )
  47. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/app/service.php ( 3.29 KB )
  48. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/app/AppService.php ( 3.64 KB )
  49. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/Service.php ( 1.64 KB )
  50. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/Lang.php ( 7.35 KB )
  51. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/lang/zh-cn.php ( 13.70 KB )
  52. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/initializer/Error.php ( 3.31 KB )
  53. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/initializer/RegisterService.php ( 1.33 KB )
  54. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/services.php ( 0.21 KB )
  55. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/service/PaginatorService.php ( 1.52 KB )
  56. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/service/ValidateService.php ( 0.99 KB )
  57. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/service/ModelService.php ( 2.04 KB )
  58. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-captcha/src/CaptchaService.php ( 0.52 KB )
  59. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-multi-app/src/Service.php ( 1.08 KB )
  60. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-trace/src/Service.php ( 0.77 KB )
  61. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/Middleware.php ( 6.72 KB )
  62. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/initializer/BootService.php ( 0.77 KB )
  63. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/Paginator.php ( 11.86 KB )
  64. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-validate/src/Validate.php ( 63.20 KB )
  65. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/Model.php ( 23.55 KB )
  66. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/model/concern/Attribute.php ( 21.05 KB )
  67. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/model/concern/AutoWriteData.php ( 4.21 KB )
  68. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/model/concern/Conversion.php ( 6.44 KB )
  69. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/model/concern/DbConnect.php ( 5.16 KB )
  70. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/model/concern/ModelEvent.php ( 2.33 KB )
  71. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/model/concern/RelationShip.php ( 28.29 KB )
  72. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-helper/src/contract/Arrayable.php ( 0.09 KB )
  73. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-helper/src/contract/Jsonable.php ( 0.13 KB )
  74. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/model/contract/Modelable.php ( 0.09 KB )
  75. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/Db.php ( 2.88 KB )
  76. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/DbManager.php ( 8.52 KB )
  77. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/Log.php ( 6.28 KB )
  78. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/Manager.php ( 3.92 KB )
  79. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/psr/log/src/LoggerTrait.php ( 2.69 KB )
  80. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/psr/log/src/LoggerInterface.php ( 2.71 KB )
  81. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/Cache.php ( 4.92 KB )
  82. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/psr/simple-cache/src/CacheInterface.php ( 4.71 KB )
  83. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-helper/src/helper/Arr.php ( 16.63 KB )
  84. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/cache/driver/Redis.php ( 6.94 KB )
  85. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/cache/Driver.php ( 9.03 KB )
  86. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/contract/CacheHandlerInterface.php ( 1.99 KB )
  87. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/Console.php ( 22.89 KB )
  88. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/app/Request.php ( 3.49 KB )
  89. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/Request.php ( 55.78 KB )
  90. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/app/middleware.php ( 3.34 KB )
  91. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/Pipeline.php ( 2.61 KB )
  92. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-trace/src/TraceDebug.php ( 3.40 KB )
  93. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/app/middleware/Common.php ( 3.88 KB )
  94. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/extend/extend.php ( 22.60 KB )
  95. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/facade/Cache.php ( 2.06 KB )
  96. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/app/middleware/InstallCheck.php ( 4.04 KB )
  97. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-multi-app/src/MultiApp.php ( 7.06 KB )
  98. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/app/index/config/view.php ( 3.31 KB )
  99. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/Route.php ( 23.73 KB )
  100. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/route/RuleName.php ( 5.75 KB )
  101. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/route/Domain.php ( 2.53 KB )
  102. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/route/RuleGroup.php ( 22.43 KB )
  103. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/route/Rule.php ( 26.95 KB )
  104. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/route/RuleItem.php ( 9.78 KB )
  105. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/app/index/route/app.php ( 3.62 KB )
  106. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/facade/Route.php ( 4.70 KB )
  107. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/route/dispatch/Controller.php ( 4.74 KB )
  108. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/route/Dispatch.php ( 10.44 KB )
  109. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/app/index/controller/Doc.php ( 4.71 KB )
  110. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/app/BaseController.php ( 5.32 KB )
  111. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/facade/Db.php ( 0.93 KB )
  112. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/db/connector/Mysql.php ( 5.44 KB )
  113. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/db/PDOConnection.php ( 52.47 KB )
  114. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/db/Connection.php ( 8.39 KB )
  115. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/db/ConnectionInterface.php ( 4.57 KB )
  116. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/db/builder/Mysql.php ( 16.58 KB )
  117. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/db/Builder.php ( 24.06 KB )
  118. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/db/BaseBuilder.php ( 27.50 KB )
  119. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/db/Query.php ( 15.71 KB )
  120. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/db/BaseQuery.php ( 45.13 KB )
  121. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/db/concern/TimeFieldQuery.php ( 7.43 KB )
  122. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/db/concern/AggregateQuery.php ( 3.26 KB )
  123. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/db/concern/ModelRelationQuery.php ( 20.07 KB )
  124. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/db/concern/ParamsBind.php ( 3.66 KB )
  125. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/db/concern/ResultOperation.php ( 7.01 KB )
  126. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/db/concern/WhereQuery.php ( 19.37 KB )
  127. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/db/concern/JoinAndViewQuery.php ( 7.11 KB )
  128. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/db/concern/TableFieldInfo.php ( 2.63 KB )
  129. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-orm/src/db/concern/Transaction.php ( 2.77 KB )
  130. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/log/driver/File.php ( 5.96 KB )
  131. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/contract/LogHandlerInterface.php ( 0.86 KB )
  132. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/log/Channel.php ( 3.89 KB )
  133. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/event/LogRecord.php ( 1.02 KB )
  134. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/event/LogWrite.php ( 0.76 KB )
  135. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/facade/View.php ( 1.70 KB )
  136. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/View.php ( 4.39 KB )
  137. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-view/src/Think.php ( 8.38 KB )
  138. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/contract/TemplateHandlerInterface.php ( 1.60 KB )
  139. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-template/src/Template.php ( 46.61 KB )
  140. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-template/src/template/driver/File.php ( 2.41 KB )
  141. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-template/src/template/contract/DriverInterface.php ( 0.86 KB )
  142. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/runtime/index/temp/ab520ea762900a5534410f355f26ec4c.php ( 50.80 KB )
  143. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/Response.php ( 8.81 KB )
  144. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/response/Html.php ( 0.97 KB )
  145. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/framework/src/think/Cookie.php ( 6.06 KB )
  146. /www/wwwroot/pay.xn--6krz1l.xn--io0a7i/vendor/topthink/think-trace/src/Html.php ( 4.42 KB )
  1. CONNECT:[ UseTime:0.000869s ] mysql:host=127.0.0.1;port=3306;dbname=pay_xn__6krz1l_x;charset=utf8
  2. SHOW FULL COLUMNS FROM `YRP_config` [ RunTime:0.000972s ]
  3. SELECT `v`,`k` FROM `YRP_config` [ RunTime:0.000470s ]
0.046196s