This commit is contained in:
2026-03-24 18:40:17 +08:00
parent a53ca2fa61
commit 82656f8f2a
637 changed files with 3306118 additions and 0 deletions

15
scripts/index.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
/**
* PHP 服务状态检测 - Android 版本
*/
header('Content-Type: application/json; charset=utf-8');
echo json_encode([
'status' => 'ok',
'message' => 'PHP 服务运行正常',
'version' => PHP_VERSION,
'platform' => 'Android',
'time' => date('Y-m-d H:i:s'),
'extensions' => get_loaded_extensions()
], JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT);