Error::getPrevious

(PHP 7, PHP 8)

Error::getPreviousRetorna o último Throwable

Descrição

final public Error::getPrevious ( ) : Throwable

Retorna o último Throwable (o terceiro parâmetro do Error::__construct()).

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

Retorna o último Throwable se disponível ou null.

Exemplos

Exemplo #1 Exemplo do método Error::getPrevious()

Iterando e imprimindo a pilha de erro.

<?php
class MyCustomError extends Error {}

function 
doStuff() {
    try {
        throw new 
InvalidArgumentError("You are doing it wrong!"112);
    } catch(
Error $e) {
        throw new 
MyCustomError("Something happened"911$e);
    }
}


try {
    
doStuff();
} catch(
Error $e) {
    do {
        
printf("%s:%d %s (%d) [%s]\n"$e->getFile(), $e->getLine(), $e->getMessage(), $e->getCode(), get_class($e));
    } while(
$e $e->getPrevious());
}
?>

O exemplo acima irá imprimir algo similar à:

/home/bjori/ex.php:8 Something happened (911) [MyCustomError]
/home/bjori/ex.php:6 You are doing it wrong! (112) [InvalidArgumentError]

Veja Também

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top