Files
chuanqi-qycq-web/api.php
艾贤凌 1405bfdd86 clear php
2026-03-16 13:10:18 +08:00

17 lines
508 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* ⚠️ 此文件已停用
*
* 所有 API 接口已迁移至 Node.jsKoa服务。
* 请将请求指向 /api/* 路径,由后端 Node.js 处理。
*
* 迁移完成时间2026-03-16
* 归档备份位置_php_archive/api.php
*/
header('Content-Type: application/json; charset=utf-8');
http_response_code(410);
echo json_encode([
'code' => 410,
'message' => '此接口已迁移至 Node.js 服务,请联系管理员更新客户端配置。',
], JSON_UNESCAPED_UNICODE);