다음은 Laravel튜토리얼 칼럼에 나온 Laravel Facade에 대한 자세한 설명입니다. 도움이 필요한 친구들에게 도움이 되었으면 좋겠습니다!
안녕하세요 여러분, 오늘의 내용은 Laravel의 Facade 메커니즘 구현 원리에 관한 것입니다.
데이터베이스 사용:
$users = DB::connection('foo')->select(...);
우리 모두 알고 있듯이 IOC 컨테이너는 Laravel 프레임워크에서 가장 중요한 부분입니다. IOC와 컨테이너라는 두 가지 기능을 제공합니다.
이번에는 IOC 컨테이너의 구체적인 구현에 대해서는 설명하지 않겠습니다. 나중에 자세히 설명하는 글이 있을 예정입니다. IOC 컨테이너와 관련하여 독자는 두 가지 사항만 기억하면 됩니다.
<?php namespace facades; abstract class Facade { protected static $app; /** * Set the application instance. * * @param \Illuminate\Contracts\Foundation\Application $app * @return void */ public static function setFacadeApplication($app) { static::$app = $app; } /** * Get the registered name of the component. * * @return string * * @throws \RuntimeException */ protected static function getFacadeAccessor() { throw new RuntimeException('Facade does not implement getFacadeAccessor method.'); } /** * Get the root object behind the facade. * * @return mixed */ public static function getFacadeRoot() { return static::resolveFacadeInstance(static::getFacadeAccessor()); } /** * Resolve the facade root instance from the container. * * @param string|object $name * @return mixed */ protected static function resolveFacadeInstance($name) { return static::$app->instances[$name]; } public static function __callStatic($method, $args) { $instance = static::getFacadeRoot(); if (! $instance) { throw new RuntimeException('A facade root has not been set.'); } switch (count($args)) { case 0: return $instance->$method(); case 1: return $instance->$method($args[0]); case 2: return $instance->$method($args[0], $args[1]); case 3: return $instance->$method($args[0], $args[1], $args[2]); case 4: return $instance->$method($args[0], $args[1], $args[2], $args[3]); default: return call_user_func_array([$instance, $method], $args); } } }
코드 설명:
TEST1 특정 논리:
<?php class Test1{ public function hello() { print("hello world"); }}
TEST1 클래스 Facade:
<?php namespace facades;/** * Class Test1 * @package facades * * @method static setOverRecommendInfo [设置播放完毕时的回调函数] * @method static setHandlerPlayer [明确指定下一首时的执行类] */class Test1Facade extends Facade{ protected static function getFacadeAccessor() { return 'test1'; } }
Usage:
use facades\Test1Facade;Test1Facade::hello(); // 这是 Facade 调用
Explanation:
return static::$app->instances[$name];
。这其中的 $name
,即为 facadesTest1
$app을 얻어 클래스의 인스턴스화 과정을 처리하는 것입니다. 위 내용은 Laravel Facade의 상세한 해석의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!