June 2017
Intermediate to advanced
536 pages
9h 49m
English
The Error class is the base class for internal PHP errors in PHP 7. Nearly all fatal and recoverable fatal errors in PHP 5.x now throw instances of the Error object, making themselves catchable via the try...catch blocks.
The Error class implements the Throwable interface, as per the following class synopsis:
Error implements Throwable { /* Properties */ protected string $message ; protected int $code ; protected string $file ; protected int $line ; /* Methods */ public __construct ( [ string $message = "" [, int $code = 0 [, Throwable $previous = NULL ]]] ) final public string getMessage (void) final public Throwable getPrevious (void) final public mixed getCode (void) final public string getFile (void) final public int getLine ...