Throwable

Throwable

(PHP 7, PHP 8)

簡介

Throwable 是能被 throw 語句拋出的最基本的介面(interface),包含了 ErrorException

注意:

PHP 類無法直接實現 (implement) Throwable 介面,而應當去繼承 Exception

介面摘要

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

更新日誌

版本 說明
8.0.0 現在 Throwable 實現了 Stringable

目錄

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *