検索

ホームページ  >  に質問  >  本文

Laravel是怎么做到在php5.6中捕获fatal error(E_ERROR)(并转化为异常)的?

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

PHPzPHPz2821日前566

全員に返信(2)返信します

  • PHP中文网

    PHP中文网2017-04-11 10:35:36

    register_shutdown_function

    <?php
    
    function handle()
    {
        $error = error_get_last();
        var_dump($error);
    }
    
    register_shutdown_function('handle');
    
    hahah();

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

    返事
    0
  • 巴扎黑

    巴扎黑2017-04-11 10:35:36

    /**
         * 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

    返事
    0
  • キャンセル返事