我有一个非常奇怪的情况:下面显示的代码在 PHP 中应该没有错误。
try {
throw new Exception('foo');
} catch(Exception $e) {
// here could be some custom functions to handle errors
die();
}
在我的电脑上打印
( ! ) SCREAM: Error suppression ignored for
( ! ) Exception: foo. in D:\wamp\www\index.php on line 4
为什么?哪个 php ini 选项可以做到这一点?