PHP的异常构造函数有第三个参数,documentation说:
$prevIoUs: The prevIoUs exception used for the exception chaining.
但我不能让它工作.我的代码如下所示:
try { throw new Exception('Exception 1',1001); } catch (Exception $ex) { throw new Exception('Exception 2',1002,$ex); }
我期望异常2被抛出,我期望它将附加异常1.但我得到的是:
Fatal error: Wrong parameters for Exception([string $exception [,long $code ]]) in ...
我究竟做错了什么?
第三个参数需要5.3.0版本.
原文链接:https://www.f2er.com/php/138109.html