(PHP 7, PHP 8)
Error::getPrevious — 返回先前的 Throwable
此函式沒有參數。
範例 #1 Error::getPrevious() 範例
循環並印出錯誤追蹤。
<?php
class MyCustomError extends Error {}
function doStuff() {
try {
throw new InvalidArgumentError("您操作錯誤!", 112);
} catch(Error $e) {
throw new MyCustomError("發生了一些事情", 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]