91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在php中使用laravel實現依賴注入

發布時間:2022-03-30 16:11:41 來源:億速云 閱讀:177 作者:iii 欄目:開發技術

這篇文章主要介紹“如何在php中使用laravel實現依賴注入”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“如何在php中使用laravel實現依賴注入”文章能幫助大家解決問題。

laravel容器包含控制反轉和依賴注入,使用起來就是,先把對象bind好,需要時可以直接使用make來取就好。

通常我們的調用如下。

$config = $container->make('config');
$connection = new Connection($this->config);

比較好理解,這樣的好處就是不用直接 new 一個實例了,方法傳值沒啥改變,還可以多處共享此實例。

但這跟依賴注入有什么關系,真正的依賴注入是不需給方法傳遞任何參數值,只需要指明方法參數類型,代碼自動查找關系依賴自動注入。

這個特性在 laravel 的 Controller、Job 等處可以體現,如下:

class TestController extends Controller
{
public function anyConsole(Request $request, Auth $input)
{
//todo
}
}

我們來看下他是怎么實現自動依賴注入的:

由 index.php 調用 Kernel ,經過多層 Kernel 管道調用,再到 Router ,經過多層中間件管道調用。最終定位到

Illuminate/Routing/Route.php 第124行。

public function run(Request $request)
{
$this->container = $this->container ?: new Container;
try {
if (! is_string($this->action['uses'])) {
return $this->runCallable($request);
}

if ($this->customDispatcherIsBound()) {
return $this->runWithCustomDispatcher($request);
}

return $this->runController($request);
} catch (HttpResponseException $e) {
return $e->getResponse();
}
}

判斷 $this->action['uses'](格式行如:\App\Http\Controller\Datacenter\RealTimeController@anyConsole)是否字符串, $this->customDispatcherIsBound判斷是否綁定了用戶自定義路由。然后跳轉到 $this->runController($request)。

protected function runController(Request $request)
{
list($class, $method) = explode('@', $this->action['uses']);

$parameters = $this->resolveClassMethodDependencies(
$this->parametersWithoutNulls(), $class, $method
);

if (! method_exists($instance = $this->container->make($class), $method)) {
throw new NotFoundHttpException;
}

return call_user_func_array([$instance, $method], $parameters);
}

$this->resolveClassMethodDependencies 這個方法一看名字就知道是我們要找的方法。$this->parametersWithoutNulls()是過濾空字符,$class、$method分別行如:\App\Http\Controller\Datacenter\RealTimeController 與 anyConsole。

protected function resolveClassMethodDependencies(array $parameters, $instance, $method)
{
if (! method_exists($instance, $method)) {
return $parameters;
}

return $this->resolveMethodDependencies(
$parameters, new ReflectionMethod($instance, $method)
);
}

new ReflectionMethod($instance, $method) 是拿到類方法的反射對象,參見文檔:http://www.php.net/manual/zh/class.reflectionmethod.php

下面跳轉到Illuminate/Routing/RouteDependencyResolverTrait.php 第54行。

public function resolveMethodDependencies(array $parameters, ReflectionFunctionAbstract $reflector)
{
$originalParameters = $parameters;

foreach ($reflector->getParameters() as $key => $parameter) {
$instance = $this->transformDependency(
$parameter, $parameters, $originalParameters
);

if (! is_null($instance)) {
$this->spliceIntoParameters($parameters, $key, $instance);
}
}

return $parameters;
}

通過反射類方法得到類參數數組,然后遍歷傳遞給 $this->transformDependency 方法。如果實例獲取不到則調用 $this->spliceIntoParameters 清楚該參數。

protected function transformDependency(ReflectionParameter $parameter, $parameters, $originalParameters)
{
$class = $parameter->getClass();
if ($class && ! $this->alreadyInParameters($class->name, $parameters)) {
return $this->container->make($class->name);
}
}

終于看到了容器的影子,沒錯最終對象還是通過容器的 make 方法取出來的。至此參數就構造好了,然后最終會被 runController 方法的 call_user_func_array 回調。

關于“如何在php中使用laravel實現依賴注入”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

历史| 德安县| 鄱阳县| 南充市| 遵义市| 东至县| 吉林省| 康马县| 富宁县| 泰兴市| 台南市| 宁国市| 定安县| 阿拉善左旗| 汶川县| 行唐县| 奉化市| 永安市| 莆田市| 吉安县| 垫江县| 霍林郭勒市| 晋宁县| 富民县| 新兴县| 浮梁县| 大英县| 眉山市| 塘沽区| 新乡市| 峨边| 九龙县| 德化县| 昌乐县| 定陶县| 龙南县| 文安县| 兰坪| 徐州市| 高尔夫| 龙川县|