Throwable

(PHP 7)

Вступ

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

Зауваження:

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

Короткий Огляд Інтерфейса

Throwable {
/* Методи */
abstract public string getMessage ( void )
abstract public int getCode ( void )
abstract public string getFile ( void )
abstract public int getLine ( void )
abstract public array getTrace ( void )
abstract public string getTraceAsString ( void )
abstract public Throwable getPrevious ( void )
abstract public string __toString ( void )
}

Зміст

add a note add a note

User Contributed Notes 2 notes

up
82
mlocati at gmail dot com
7 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://gist.github.com/mlocati/249f07b074a0de339d4d1ca980848e6a

And its output is here:
https://3v4l.org/sDMsv
up
7
thisbug at foxmail dot com
4 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