PHP 8.4.6 Released!

Throwable

(PHP 7, PHP 8)

Introduzione

Throwable is the base interface for any object that can be thrown via a throw statement, including Error and Exception.

Nota:

PHP classes cannot implement the Throwable interface directly, and must instead extend Exception.

Sommario dell'interfaccia

interface Throwable extends Stringable {
/* Metodi */
public getMessage(): string
public getCode(): int
public getFile(): string
public getLine(): int
public getTrace(): array
public __toString(): string
/* Metodi ereditati */
}

Log delle modifiche

Versione Descrizione
8.0.0 Throwable implements Stringable now.

Indice dei contenuti

add a note

User Contributed Notes 2 notes

up
101
mlocati at gmail dot com
8 years ago
I wrote a simple script that prints out the Throwable and Exception tree for every PHP version.

You can find this script here:
https://3v4l.org/sDMsv
up
6
thisbug at foxmail dot com
5 years ago
try {
/ Code that may throw an Exception or Error.
} catch (Throwable $t) {
/ Executed only in PHP 7, will not match in PHP 5.x
} catch (Exception $e) {
/ Executed only in PHP 5.x, will not be reached in PHP 7
}

interface MyPackageThrowable extends Throwable {}

class MyPackageException extends Exception implements MyPackageThrowable {}

throw new MyPackageException();
To Top

Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant