Throwable

(PHP 7, PHP 8)

简介

Throwable 是能被 throw 语句抛出的最基本的接口(interface),包含了 ErrorException

注意:

PHP 类无法直接实现 (implement) Throwable 接口,而应当去继承 Exception

接口摘要

interface Throwable extends Stringable {
/* 方法 */
public function getMessage(): string
public function getCode(): int
public function getFile(): string
public function getLine(): int
public function getTrace(): array
public function getTraceAsString(): string
public function getPrevious(): ?Throwable
public function __toString(): string
/* 继承的方法 */
public function Stringable::__toString(): string
}

更新日志

版本 说明
8.0.0 现在 Throwable 实现了 Stringable

目录