CakeFest 2024: The Official CakePHP Conference

Error::getPrevious

(PHP 7, PHP 8)

Error::getPrevious直前の Throwable を返す

説明

final public Error::getPrevious(): ?Throwable

直前の Throwable(Error::__construct() の3番目の引数)を返す。

パラメータ

この関数にはパラメータはありません。

戻り値

直前の Throwable が利用可能であればそれを返し、 そうでなければ null を返す。

例1 Error::getPrevious() の例

エラートレースをループし、出力する。

<?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());
}
?>

上の例の出力は、 たとえば以下のようになります。

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

参考

add a note

User Contributed Notes

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