$code, 'show' => $show, 'msg' => $msg, 'data' => $data ); return json($result, $httpStatus); } /** * 成功返回 * @param string $msg (提示) * @param array $data (数据集) * @Author FZR * @return Json */ public static function success(string $msg='OK', array $data=[], int $code = 1, int $show = 0) : Json { return self::result($code, $show, $msg, $data); } /** * 错误返回 * @param string $msg (提示) * @param array $data (数据集) * @Author FZR * @return Json */ public static function error(string $msg='Error', array $data=[],int $code = 0, int $show = 1) : Json { return self::result($code, $show, $msg, $data); } /** * Notes: 抛出JSON * @param string $msg * @param array $data * @param int $code * @Author FZR */ public static function throw(string $msg='Error', array $data=[], int $code=0, int $show = 1) { $data = array('code'=>$code, 'show'=>$show, 'msg'=>$msg, 'data'=>$data); $response = Response::create($data, 'json', 200); throw new HttpResponseException($response); } }