对于 Apache Web 服务器,我们可以error_reporting
通过php.ini
.
异常报告是否有类似的设置?
我下面的代码显示error_reporting
不影响exception throw
命令。
function actionTestThrow() {
error_reporting(null);
$i=122;
throw new Exception('abb');
$i=344;
echo $i;
}