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());
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。