类 PhpError
围绕由 `trigger_error()` 发出的 PHP 错误的对象包装器
命名空间: Cake\Error
方法概要
-
__construct() public
构造函数
-
getCode() public
获取 PHP 错误常量。
-
getFile() public
获取错误文件
-
getLabel() public
获取错误代码标签
-
getLine() public
获取错误行号。
-
getLogLevel() public
获取映射的 LOG_ 常量。
-
getMessage() public
获取错误消息。
-
getTrace() public
获取堆栈跟踪作为数组。
-
getTraceAsString() public
获取堆栈跟踪作为字符串。
方法详情
__construct() ¶ public
__construct(int $code, string $message, string|null $file = null, int|null $line = null, array $trace = [])
构造函数
参数
-
int
$code PHP 错误代码常量
-
string
$message 错误消息。
-
string|null
$file 可选 错误的 文件名。
-
int|null
$line 可选 错误的行号。
-
array
$trace 可选 错误的回溯。