1、简介
Laravel默认已经为我们配置好了错误和异常处理,此外,Laravel还集成了 Monolog日志库以便提供多种功能强大的日志处理器。
2、配置
错误详情显示
配置文件 config/app.php中的 debug配置选项控制浏览器显示的错误详情数量。默认情况下,该配置选项被设置在 .env文件中的环境变量 APP_DEBUG。
对本地开发而言,你应该设置环境变量 APP_DEBUG值为 true。在生产环境,该值应该被设置为 false。
日志模式
Laravel支持日志方法 single, daily, syslog和 errorlog。例如,如果你想要日志文件按日生成而不是生成单个文件,应该在配置文件 config/app.php中设置 log值如下:
'log' => 'daily'
自定义Monolog配置
如果你想要在应用中完全控制Monolog的配置,可以使用应用的 configureMonologUsing方法。你应该在 bootstrap/app.php文件返回 $app变量之前调用该方法:
$app->configureMonologUsing(function($monolog) { $monolog->pushHandler(...);});return $app;
3、异常处理器
所有异常都由类 App\Exceptions\Handler处理,该类包含两个方法: report和 render。下面我们详细阐述这两个方法。
3.1 report方法
report方法用于记录异常并将其发送给外部服务如 Bugsnag。默认情况下, report方法只是将异常传递给异常被记录的基类,你可以随心所欲的记录异常。
例如,如果你需要以不同方式报告不同类型的异常,可使用PHP的 instanceof比较操作符:
/** * 报告或记录异常 * * This is a great spot to send exceptions to Sentry, Bugsnag, etc. * * @param \Exception $e * @return void */public function report(Exception $e){ if ($e instanceof CustomException) { // } return parent::report($e);}
通过类型忽略异常
异常处理器的 $dontReport属性包含一个不会被记录的异常类型数组,默认情况下, 404错误异常不会被写到日志文件,如果需要的话你可以添加其他异常类型到这个数组。
3.2 render方法
render方法负责将给定异常转化为发送给浏览器的HTTP响应,默认情况下,异常被传递给为你生成响应的基类。然而,你可以随心所欲地检查异常类型或者返回自定义响应:
/** * 将异常渲染到HTTP响应中 * * @param \Illuminate\Http\Request $request * @param \Exception $e * @return \Illuminate\Http\Response */public function render($request, Exception $e){ if ($e instanceof CustomException) { return response()->view('errors.custom', [], 500); } return parent::render($request, $e);}
4、HTTP异常
有些异常描述来自服务器的HTTP错误码,例如,这可能是一个“页面未找到”错误( 404),“认证失败错误”( 401)亦或是程序出错造成的 500错误,为了在应用中生成这样的响应,使用如下方法:
abort(404);
abort方法会立即引发一个会被异常处理器渲染的异常,此外,你还可以像这样提供响应描述:
abort(403, 'Unauthorized action.');
该方法可在请求生命周期的任何时间点使用。
自定义HTTP错误页面
Laravel使得返回多种HTTP状态码的错误页面变得简单,例如,如果你想要自定义 404错误页面,创建一个 resources/views/errors/404.blade.php文件,给文件将会渲染程序生成的所有 404错误。
改目录下的视图命名应该和相应的HTTP状态码相匹配。
5、日志
Laravel日志工具基于强大的Monolog库,默认情况下,Laravel被配置为在 storage/logs目录下每日为应用生成日志文件,你可以使用 Log门面编写日志信息到日志中:
<?phpnamespace App\Http\Controllers;use Log;use App\User;use App\Http\Controllers\Controller;class UserController extends Controller{ /** * 显示指定用户的属性 * * @param int $id * @return Response */ public function showProfile($id) { Log::info('Showing user profile for user: '.$id); return view('user.profile', ['user' => User::findOrFail($id)]); }}
该日志记录器提供了 RFC 5424中定义的八种日志级别: emergency, alert, critical, error, warning, notice, info和 debug。
Log::emergency($error);Log::alert($error);Log::critical($error);Log::error($error);Log::warning($error);Log::notice($error);Log::info($error);Log::debug($error);
上下文信息
上下文数据数组也会被传递给日志方法。上下文数据将会和日志消息一起被格式化和显示:
Log::info('User failed to login.', ['id' => $user->id]);
访问底层Monolog实例
Monolog有多个可用于日志的处理器,如果需要的话,你可以访问底层Monolog实例:
$monolog = Log::getMonolog();

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Following its high-profile acquisition by Facebook in 2012, Instagram adopted two sets of APIs for third-party use. These are the Instagram Graph API and the Instagram Basic Display API.As a developer building an app that requires information from a

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
