Your IP : 3.137.187.104
<?php require_once('constants.php'); function throwError($code, $message) { header("content-type: application/json"); $errorMsg = json_encode(['data' => ['error_code' => -1, 'status' => $code, 'msg' => $message]]); echo $errorMsg; } |