我只是将Laravel 4.2升级到Laravel 5.0。在我的App / Exception / Handler.php文件中,我有一个这样的代码:
/**
* Report or log an exception.
*
* This is a great spot to send exceptions to Sentry, Bugsnag, etc.
*
* @param \Exception $e
* @return void
*/
public function report(Exception $e)
{
...
return parent::report($e);
}
我想知道如何在report
方法中获取响应的错误代码(500,404,...)。
谢谢大家!!
答案 0 :(得分:0)
nav ul {
text-align: center;
padding: 0;
margin: 0;
list-style: none;
position: relative;
}
答案 1 :(得分:0)
你可以试试这个:
// If this exception is an instance of HttpException
if ($this->isHttpException($e)) {
// Grab the HTTP status code from the Exception
$status = $e->getStatusCode();
}