* @param integer|Response $code 狀態(tài)碼 或者 Response對象實(shí)例
* @param string $message 錯誤信息
* @param array $header 參數
*/
function abort($code, $message = null, $header = [])
{
if ($code instanceof Response) {
throw new HttpResponseException($code);
} else {
throw new HttpException($code, $message, null, $header);
}
}
}
if (!function_exists('halt')) {
/**
* 調試變量并且中斷輸出
* @param mixed $var 調試變量或者信息
*/