如何在Laravel 5中了解HTTP错误状态

时间:2017-11-30 14:11:44

标签: php laravel http

我只是将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,...)。

谢谢大家!!

2 个答案:

答案 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();
    }