Exception 的 __toString 实现还将包括链接到此异常的先前异常的字符串表示,_在_ 当前异常的字符串表示之前。
例如
<?php
class OuterException extends Exception {}
class MiddleException extends Exception {}
class InnerException extends Exception {}
$excA = new InnerException("inner exception", 0);
$excB = new MiddleException("middle exception", 0, $excA);
$excC = new OuterException("outer exception", 0, $excB);
echo "The exception is:\n$excC";
?>
将打印以下内容
异常是
InnerException: inner exception in test.php:6
堆栈追踪
#0 {main}
下一个 MiddleException: middle exception in test.php:7
堆栈追踪
#0 {main}
下一个 OuterException: outer exception in test.php:8
堆栈追踪
#0 {main}