forked from Cyclone-Team/e949
24 lines
379 B
PHP
24 lines
379 B
PHP
<?php
|
|
|
|
require_once("_errors.php");
|
|
|
|
|
|
|
|
function ReturnJSONData ($arr) {
|
|
$data = json_encode($arr);
|
|
if (!$data) {
|
|
$data = json_encode(array("error" => $Err_Int_JSONEncode));
|
|
}
|
|
header("Content-Type: application/json; charset=utf-8");
|
|
echo $data;
|
|
exit;
|
|
}
|
|
|
|
function ReturnJSONError ($err, $desc) {
|
|
ReturnJSONData(array(
|
|
"error" => $err,
|
|
"description" => $desc
|
|
));
|
|
}
|
|
|
|
?>
|