forked from tfornik/RussiaTools
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
387 B
16 lines
387 B
<?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);
|
|
|
|
|
|
|