error_get_last

Supported Versions: PHP 5 >= 5.2.0, PHP 7, PHP 8
Get the last occurred error
<?php error_get_last(): ?array
<?php     {

        static::$reservedMemory = null;



        if (! is_null($error = error_get_last()) && $this->isFatal($error['type'])) {

            $this->handleException($this->fatalErrorFromPhpError($error, 0));

        }

    }