9 lines
185 B
PHP
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));
|
|
?>
|