类 RedirectException
路由和应用程序代码用来触发重定向的异常子类。
URL 和状态码作为构造函数参数提供。
throw new RedirectException('http://example.com/some/path', 301);
其他头部信息也可以在构造函数中提供,或使用 setHeaders() 方法。
命名空间: Cake\Http\Exception
属性摘要
-
$_attributes protected
数组
从构造函数传入的属性数组,在显示开发错误时在视图中可用。
-
$_defaultCode protected
int
默认异常代码
-
$_messageTemplate protected
字符串
包含属性 sprintf() 的模板字符串。
-
$headers protected
array<string, mixed>
方法摘要
-
__construct() public
构造函数
-
getAttributes() public
获取传入的属性
-
getHeaders() public
返回响应头部数组。
-
setHeader() public
设置单个 HTTP 响应头部。
-
setHeaders() public
设置 HTTP 响应头部。
方法详情
__construct() ¶ public
__construct(string $target, int $code = 302, array $headers = [])
构造函数
允许您创建被视为框架错误的异常,并在调试模式关闭时禁用。
参数
-
string
$target 要重定向到的 URL。
-
int
$code optional 将用作 HTTP 状态码的异常代码
-
array
$headers optional 应该在未经授权的挑战响应中发送的头部信息。
setHeader() ¶ public
setHeader(string $header, list<string>|string|null $value = null): void
设置单个 HTTP 响应头部。
参数
-
string
$header 头部名称
-
list<string>|string|null
$value optional 头部值
返回值
void
setHeaders() ¶ public
setHeaders(array<string, mixed> $headers): void
设置 HTTP 响应头部。
参数
-
array<string, mixed>
$headers 头部名称和值对的数组。
返回值
void