(PHP 7, PHP 8)
Error::getPrevious — Retourne Throwable précédent
Retourne Throwable précédent (le troisième paramètre de Error::__construct()).
Cette fonction ne contient aucun paramètre.
Exemple #1 Exemple de Error::getPrevious()
Boucler sur, et affichier, une trace d'erreur
<?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());
}
?>Résultat de l'exemple ci-dessus est similaire à :
/home/bjori/ex.php:8 Something happened (911) [MyCustomError] /home/bjori/ex.php:6 You are doing it wrong! (112) [InvalidArgumentError]
