This article mainly introduces the core interpretation of Facades in Laravel, which has certain reference value. Now I share it with everyone. Friends in need can refer to it
What are Facades
Facades are A component that we use very frequently in Laravel application development is not appropriately called a component. In fact, they are a set of static class interfaces or proxies that allow developers to simply access various services bound to the service container. The explanation of Facades in the Laravel documentation is as follows:
Facades provide a "static" interface for classes available in the application's service container. Laravel comes with many facades, and you may be using them without even knowing it! As a "static proxy" for base classes in the service container, Laravel "facades" have the advantages of concise and easy-to-express syntax, while maintaining higher testability and flexibility than traditional static methods.
The Route we often use is a Facade, which is an alias of the \Illuminate\Support\Facades\Route
class. This Facade class represents the registered in the service container. router
service, so through the Route class we can easily use the various services provided in the router service, and the service resolution involved is completely implicitly completed by Laravel, which to a certain extent makes the application The code has become much simpler. Below we will take a brief look at the process between Facades being registered in the Laravel framework and being used by the application. Facades work closely with ServiceProvider, so if you understand these processes, it will be helpful to develop custom Laravel components.
Registering Facades
When it comes to Facades registration, we have to go back to the Bootstrap stage that has been mentioned many times when introducing other core components. There is a startup before the request passes through middleware and routing. Application process:
//Class: \Illuminate\Foundation\Http\Kernel protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); Facade::clearResolvedInstance('request'); $this->bootstrap(); return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } //引导启动Laravel应用程序 public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { /**依次执行$bootstrappers中每一个bootstrapper的bootstrap()函数 $bootstrappers = [ 'Illuminate\Foundation\Bootstrap\DetectEnvironment', 'Illuminate\Foundation\Bootstrap\LoadConfiguration', 'Illuminate\Foundation\Bootstrap\ConfigureLogging', 'Illuminate\Foundation\Bootstrap\HandleExceptions', 'Illuminate\Foundation\Bootstrap\RegisterFacades', 'Illuminate\Foundation\Bootstrap\RegisterProviders', 'Illuminate\Foundation\Bootstrap\BootProviders', ];*/ $this->app->bootstrapWith($this->bootstrappers()); } }
In the process of starting the applicationIlluminate\Foundation\Bootstrap\RegisterFacades
This stage will register the Facades used in the application.
class RegisterFacades { /** * Bootstrap the given application. * * @param \Illuminate\Contracts\Foundation\Application $app * @return void */ public function bootstrap(Application $app) { Facade::clearResolvedInstances(); Facade::setFacadeApplication($app); AliasLoader::getInstance(array_merge( $app->make('config')->get('app.aliases', []), $app->make(PackageManifest::class)->aliases() ))->register(); } }
Here, aliases will be registered for all Facades through instances of the AliasLoader
class. The corresponding relationship between Facades and aliases is stored in the config/app.php
file. ##$aliasesIn the array
'aliases' => [ 'App' => Illuminate\Support\Facades\App::class, 'Artisan' => Illuminate\Support\Facades\Artisan::class, 'Auth' => Illuminate\Support\Facades\Auth::class, ...... 'Route' => Illuminate\Support\Facades\Route::class, ...... ]Look at how these aliases are registered in AliasLoader
// class: Illuminate\Foundation\AliasLoader public static function getInstance(array $aliases = []) { if (is_null(static::$instance)) { return static::$instance = new static($aliases); } $aliases = array_merge(static::$instance->getAliases(), $aliases); static::$instance->setAliases($aliases); return static::$instance; } public function register() { if (! $this->registered) { $this->prependToLoaderStack(); $this->registered = true; } } protected function prependToLoaderStack() { // 把AliasLoader::load()放入自动加载函数队列中,并置于队列头部 spl_autoload_register([$this, 'load'], true, true); }Through the above code snippet, you can see that AliasLoader registers the load method to the SPL __autoload function The head of the queue. Take a look at the source code of the load method:
public function load($alias) { if (isset($this->aliases[$alias])) { return class_alias($this->aliases[$alias], $alias); } }In the load method
$aliases the Facade class in the configuration creates the corresponding alias, for example, when we use the alias class
Route PHP will create an alias class
Route for the
Illuminate\Support\Facades\Route::class class through the load method of AliasLoader, so we use the alias
Route in the program In fact, the
`Illuminate\Support\Facades\Route class is used.
Route::get ('/uri', 'Controller@action);, then how does
Route proxy to the routing service? This involves the implicit resolution of the service in the Facade. Let's take a look. The source code of the Route class:
class Route extends Facade { /** * Get the registered name of the component. * * @return string */ protected static function getFacadeAccessor() { return 'router'; } }has only one simple method, and there are no routing methods such as
get,
post,
delete, etc., parent class Neither, but we know that calling a static method that does not exist in the class will trigger PHP's
__callStaticstatic method
public static function __callStatic($method, $args) { $instance = static::getFacadeRoot(); if (! $instance) { throw new RuntimeException('A facade root has not been set.'); } return $instance->$method(...$args); } //获取Facade根对象 public static function getFacadeRoot() { return static::resolveFacadeInstance(static::getFacadeAccessor()); } /** * 从服务容器里解析出Facade对应的服务 */ protected static function resolveFacadeInstance($name) { if (is_object($name)) { return $name; } if (isset(static::$resolvedInstance[$name])) { return static::$resolvedInstance[$name]; } return static::$resolvedInstance[$name] = static::$app[$name]; }through the accessor (string router) set in the subclass Route Facade , parse the corresponding service from the service container. The router service is registered into the service container by
\Illuminate\Routing\RoutingServiceProvider during the registerBaseServiceProviders stage when the application is initialized (see the construction method of Application for details). :
class RoutingServiceProvider extends ServiceProvider { /** * Register the service provider. * * @return void */ public function register() { $this->registerRouter(); ...... } /** * Register the router instance. * * @return void */ protected function registerRouter() { $this->app->singleton('router', function ($app) { return new Router($app['events'], $app); }); } ...... }The class corresponding to the router service is
\Illuminate\Routing\Router, so Route Facade actually proxies this class, and Route::get actually calls
\Illuminate\Routing\RouterThe get method of the object
/** * Register a new GET route with the router. * * @param string $uri * @param \Closure|array|string|null $action * @return \Illuminate\Routing\Route */ public function get($uri, $action = null) { return $this->addRoute(['GET', 'HEAD'], $uri, $action); }Add two points:
- Used when parsing the service
static::$app
is set in the initial
RegisterFacades, which refers to the service container.
- static::$app['router']; The reason why the router service can be parsed from the service container in the form of array access is because the service container implements the ArrayAccess interface of SPL. There is no such thing as For concepts, you can read the official document ArrayAccess ##Summary
By sorting out the registration and usage process of Facade, we can see that Facade and service provider (ServiceProvider) work closely together Yes, so if you write your own Laravel custom service in the future, in addition to registering the service into the service container through the component's ServiceProvider, you can also provide a Facade in the component so that the application can easily access the custom service you wrote.
The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!
related suggestion:
Interpretation of Laravel middleware (Middleware)
Interpretation of Laravel routing (Route)
The above is the detailed content of Laravel Core Interpretation Facades. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于laravel的相关知识,其中主要介绍了关于单点登录的相关问题,单点登录是指在多个应用系统中,用户只需要登录一次就可以访问所有相互信任的应用系统,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于laravel的相关知识,其中主要介绍了关于Laravel的生命周期相关问题,Laravel 的生命周期从public\index.php开始,从public\index.php结束,希望对大家有帮助。

在laravel中,guard是一个用于用户认证的插件;guard的作用就是处理认证判断每一个请求,从数据库中读取数据和用户输入的对比,调用是否登录过或者允许通过的,并且Guard能非常灵活的构建一套自己的认证体系。

laravel中asset()方法的用法:1、用于引入静态文件,语法为“src="{{asset(‘需要引入的文件路径’)}}"”;2、用于给当前请求的scheme前端资源生成一个url,语法为“$url = asset('前端资源')”。

本篇文章给大家带来了关于laravel的相关知识,其中主要介绍了关于使用中间件记录用户请求日志的相关问题,包括了创建中间件、注册中间件、记录用户访问等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于laravel的相关知识,其中主要介绍了关于中间件的相关问题,包括了什么是中间件、自定义中间件等等,中间件为过滤进入应用的 HTTP 请求提供了一套便利的机制,下面一起来看一下,希望对大家有帮助。

在laravel中,fill方法是一个给Eloquent实例赋值属性的方法,该方法可以理解为用于过滤前端传输过来的与模型中对应的多余字段;当调用该方法时,会先去检测当前Model的状态,根据fillable数组的设置,Model会处于不同的状态。

laravel路由文件在“routes”目录里。Laravel中所有的路由文件定义在routes目录下,它里面的内容会自动被框架加载;该目录下默认有四个路由文件用于给不同的入口使用:web.php、api.php、console.php等。


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

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

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.

SublimeText3 Linux new version
SublimeText3 Linux latest version

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.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function
