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;
}