Php/docs/class.error

来自菜鸟教程
跳转至:导航、​搜索

(PHP 7, PHP 8)

简介

Error 是所有PHP内部错误类的基类。


类摘要


Error implements Throwable {

/* 属性 */

protected string $message

protected int $code

protected string $file

protected int $line

/* 方法 */

public __construct ([ string $message = "" [, int $code = 0 [, Throwable $previous = null ]]] )

final public getMessage ( ) : string

final public getPrevious ( ) : Throwable

final public getCode ( ) : mixed

final public getFile ( ) : string

final public getLine ( ) : int

final public getTrace ( ) : array

final public getTraceAsString ( ) : string

public __toString ( ) : string

final private __clone ( ) : void

}

属性

message
错误消息内容
code
错误代码
file
抛出错误的文件名
line
抛出错误的行数


Table of Contents