wxxy_class/api/index.php
2022-09-10 15:58:18 +08:00

18 lines
339 B
PHP

<?PHP
/*
* wxxy_class 项目组
* 代码均开源
*/
// 载入头
include($_SERVER['DOCUMENT_ROOT'].'/api/header-control.php');
// 编译数据
$data = array(
'output'=>'SUCCESS',
'code'=>200,
'info'=>'当看到此页面代表所有API项目正常运行'
);
// 输出数据
echo json_encode($data,JSON_UNESCAPED_UNICODE);