当下面的代码时,PHP应该捕获异常并继续执行而不抛出任何错误/异常页面.
问题:但是在Laravel 4中,会显示异常页面.将app.debug设置为false仅隐藏堆栈跟踪.你如何强迫Laravel忽视并继续执行?
try { SomeOperation(); } catch (SomeException $e) { // do nothing... PHP will ignore and continue }
这可能是命名空间问题.
你是否试图在例外之前加斜线?
catch(\Exception $e) { Log::error($e->getMessage()); }