laravel源码解析之bootstrap过程

2021/11/21 11:10:00

本文主要是介绍laravel源码解析之bootstrap过程,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1.简介

laravel有两个主要的引导流程

第一个是在创建Application对象时的引导

$app = require_once __DIR__.'/../bootstrap/app.php';

主要是创建了Application容器对象,并且注册了核心的几个对象

第二个是在处理请求之前Illuminate\Foundation\Http\Kernel中使用引导器进行的引导

    protected $bootstrappers = [
        \Illuminate\Foundation\Bootstrap\LoadEnvironmentVariables::class,
        \Illuminate\Foundation\Bootstrap\LoadConfiguration::class,
        \Illuminate\Foundation\Bootstrap\HandleExceptions::class,
        \Illuminate\Foundation\Bootstrap\RegisterFacades::class,
        \Illuminate\Foundation\Bootstrap\RegisterProviders::class,
        \Illuminate\Foundation\Bootstrap\BootProviders::class,
    ];

    public function bootstrap()
    {
        if (! $this->app->hasBeenBootstrapped()) {
            $this->app->bootstrapWith($this->bootstrappers());
        }
    }


这篇关于laravel源码解析之bootstrap过程的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程