PHP Class think\Exception

Inheritance: extends Exception
Show file Open project: top-think/framework Class Usage Examples

Protected Properties

Property Type Description
$data array 保存异常页面显示的额外Debug数据

Public Methods

Method Description
getData ( ) : array 获取异常额外Debug数据 主要用于输出到异常页面便于调试

Protected Methods

Method Description
setData ( string $label, array $data ) 设置异常额外的Debug数据 数据将会显示为下面的格式

Method Details

getData() final public method

获取异常额外Debug数据 主要用于输出到异常页面便于调试
final public getData ( ) : array
return array 由setData设置的Debug数据

setData() final protected method

Exception Data -------------------------------------------------- Label 1 key1 value1 key2 value2 Label 2 key1 value1 key2 value2
final protected setData ( string $label, array $data )
$label string 数据分类,用于异常页面显示
$data array 需要显示的数据,必须为关联数组

Property Details

$data protected property

保存异常页面显示的额外Debug数据
protected array $data
return array