Files
chuanqi-qycq-web/server.php

16 lines
443 B
PHP
Raw Normal View History

2025-07-10 23:55:26 +08:00
<?php
/**
2026-03-16 13:10:18 +08:00
* ⚠️ 此文件已停用
2025-07-10 23:55:26 +08:00
*
2026-03-16 13:10:18 +08:00
* 区服列表接口已迁移至 Node.js 服务。
* 新接口GET /api/server/list
* 迁移完成时间2026-03-16
* 归档备份位置_php_archive/server.php
2025-07-10 23:55:26 +08:00
*/
2026-03-16 13:10:18 +08:00
header('Content-Type: application/json; charset=utf-8');
http_response_code(410);
echo json_encode([
'code' => 410,
'message' => '此接口已迁移新接口GET /api/server/list',
], JSON_UNESCAPED_UNICODE);