Laravel是怎么做到在php5.6中捕获fatal error(E_ERROR)(并转化为异常)的?
PHPz
PHPz 2017-04-11 10:33:36
0
2
558

众所周知set_error_handler函数注册的错误处理器不能处理部分致命错误,而error_get_last()和register_shutdown_function()又不能对错误本身进行处理。可是Laravel居然做到了。很想知道其中的原理。
(Symfony\Component\Debug\Exception\FatalErrorException)

PHPz
PHPz

学习是最好的投资!

reply all(2)
Ty80

register_shutdown_function

<?php

function handle()
{
    $error = error_get_last();
    var_dump($error);
}

register_shutdown_function('handle');

hahah();

具体处理可看Symfony\Component\Debug\ErrorHandler,考虑很全面。

巴扎黑
/**
     * Bootstrap the given application.
     *
     * @param  \Illuminate\Contracts\Foundation\Application  $app
     * @return void
     */
    public function bootstrap(Application $app)
    {
        $this->app = $app;

        error_reporting(-1);

        set_error_handler([$this, 'handleError']);

        set_exception_handler([$this, 'handleException']);

        register_shutdown_function([$this, 'handleShutdown']);

        if (! $app->environment('testing')) {
            ini_set('display_errors', 'Off');
        }
    }

详细处理请见Illuminate\Foundation\Bootstrap\HandleExceptions

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template