Exception::getPrevious
(PHP 5 >= 5.3.0, PHP 7, PHP 8)
Exception::getPrevious — 返回前一个 Throwable
说明
返回前一个 Throwable (传递给 Exception::__construct()方法的第三个参数)。
参数
此函数没有参数。
示例
示例 #1 Exception::getPrevious()示例
追踪异常,并循环打印。
<?php
class MyCustomException extends Exception {}
function doStuff() {
try {
throw new InvalidArgumentException("You are doing it wrong!", 112);
} catch(Exception $e) {
throw new MyCustomException("Something happend", 911, $e);
}
}
try {
doStuff();
} catch(Exception $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 happend (911) [MyCustomException] /home/bjori/ex.php:6 You are doing it wrong! (112) [InvalidArgumentException]
+添加备注
用户贡献的备注 1 note
harry at upmind dot com ¶
6 years ago
/**
* Gets sequential array of all previously-chained errors
*
* @param Throwable $error
*
* @return Throwable[]
*/
function getChain(Throwable $error) : array
{
$chain = [];
do {
$chain[] = $error;
} while ($error = $error->getPrevious());
return $chain;
}
备份地址:http://www.lvesu.com/blog/php/exception.getprevious.php