Sync all projects

This commit is contained in:
github-actions[bot]
2026-06-29 03:41:14 +00:00
parent 529cd7c625
commit 8b025e0766
11717 changed files with 6370622 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<?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);