Files
chuanqi-qycq-web/static/index.php
2025-07-10 23:55:26 +08:00

9 lines
185 B
PHP

<?php
header("Access-Control-Allow-Origin: *");
header('Content-type: application/json');
$json = array(
"code"=>0,
"msg"=>"succ"
);
exit(json_encode($json,JSON_UNESCAPED_UNICODE));
?>