Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
不久前,我意识到 symfony 会打印出我的 prod 环境中的所有异常。我怎样才能关闭它?
经过一番寻找,似乎这就是方法(可能有更好的解决方案,但我找不到)。
在web/app.php, 更改$kernel = new AppKernel('prod', true);-true这里设置display_errors为 true,所以只需将其更改为false.
web/app.php
$kernel = new AppKernel('prod', true);
true
display_errors
false
如果失败,您应该确保 display_errors 已关闭(如果是生产,最好在 php.ini 中完成而不是使用ini_set)。
ini_set