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.
在下面的代码中,PHP 应该捕获异常并继续执行而不抛出任何错误/异常页面。
问:但是在 Laravel 4 中,出现了异常页面。设置app.debug为false仅隐藏堆栈跟踪。你如何强制 Laravel 忽略并继续执行?
app.debug
false
try { SomeOperation(); } catch (SomeException $e) { // do nothing... php will ignore and continue }
这可能是一个命名空间问题。
您是否尝试在异常前加上斜线?
catch(\Exception $e) { Log::error($e->getMessage()); }