php+laravel依賴注入知識點(diǎn)總結(jié)
laravel容器包含控制反轉(zhuǎn)和依賴注入,使用起來就是,先把對象bind好,需要時(shí)可以直接使用make來取就好。
通常我們的調(diào)用如下。
$config = $container->make('config');
$connection = new Connection($this->config);
比較好理解,這樣的好處就是不用直接 new 一個(gè)實(shí)例了,方法傳值沒啥改變,還可以多處共享此實(shí)例。
但這跟依賴注入有什么關(guān)系,真正的依賴注入是不需給方法傳遞任何參數(shù)值,只需要指明方法參數(shù)類型,代碼自動(dòng)查找關(guān)系依賴自動(dòng)注入。
這個(gè)特性在 laravel 的 Controller、Job 等處可以體現(xiàn),如下:
class TestController extends Controller
{
public function anyConsole(Request $request, Auth $input)
{
//todo
}
}
我們來看下他是怎么實(shí)現(xiàn)自動(dòng)依賴注入的:
由 index.php 調(diào)用 Kernel ,經(jīng)過多層 Kernel 管道調(diào)用,再到 Router ,經(jīng)過多層中間件管道調(diào)用。最終定位到
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判斷是否綁定了用戶自定義路由。然后跳轉(zhuǎn)到 $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 這個(gè)方法一看名字就知道是我們要找的方法。$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
下面跳轉(zhuǎn)到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;
}
通過反射類方法得到類參數(shù)數(shù)組,然后遍歷傳遞給 $this->transformDependency 方法。如果實(shí)例獲取不到則調(diào)用 $this->spliceIntoParameters 清楚該參數(shù)。
protected function transformDependency(ReflectionParameter $parameter, $parameters, $originalParameters)
{
$class = $parameter->getClass();
if ($class && ! $this->alreadyInParameters($class->name, $parameters)) {
return $this->container->make($class->name);
}
}
終于看到了容器的影子,沒錯(cuò)最終對象還是通過容器的 make 方法取出來的。至此參數(shù)就構(gòu)造好了,然后最終會(huì)被 runController 方法的 call_user_func_array 回調(diào)。
總結(jié):
1. 依賴注入原理其實(shí)就是利用類方法反射,取得參數(shù)類型,然后利用容器構(gòu)造好實(shí)例。然后再使用回調(diào)函數(shù)調(diào)起。
2. 注入對象構(gòu)造函數(shù)不能有參數(shù)。否則會(huì)報(bào)錯(cuò)。Missing argument 1
3. 依賴注入故然好,但它必須要由 Router 類調(diào)起,否則直接用 new方式是無法實(shí)現(xiàn)注入的。所以這就為什么只有 Controller 、Job 類才能用這個(gè)特性了。
以上就是關(guān)于php+laravel依賴注入的全部知識點(diǎn)內(nèi)容,感謝大家的學(xué)習(xí)和對腳本之家的支持。
相關(guān)文章
老生常談PHP中的數(shù)據(jù)結(jié)構(gòu):DS擴(kuò)展
下面小編就為大家?guī)硪黄仙U凱HP中的數(shù)據(jù)結(jié)構(gòu):DS擴(kuò)展。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2017-07-07
PHP實(shí)現(xiàn)把文本中的URL轉(zhuǎn)換為鏈接的auolink()函數(shù)分享
這篇文章主要介紹了PHP實(shí)現(xiàn)把文本中的URL轉(zhuǎn)換為鏈接的auolink()函數(shù)分享,非常簡潔易用的一個(gè)函數(shù),原作者還有另外一些很Nice的PHP函數(shù),需要的朋友可以參考下2014-07-07
PHP實(shí)現(xiàn)把MySQL數(shù)據(jù)庫導(dǎo)出為.sql文件實(shí)例(仿PHPMyadmin導(dǎo)出功能)
這篇文章主要介紹了PHP實(shí)現(xiàn)把MySQL數(shù)據(jù)庫導(dǎo)出為.sql文件實(shí)例(仿PHPMyadmin導(dǎo)出功能),需要的朋友可以參考下2014-05-05
Laravel認(rèn)證原理以及完全自定義認(rèn)證詳解
最近在學(xué)習(xí)laravel框架,所以下面這篇文章主要給大家介紹了關(guān)于Laravel認(rèn)證原理以及完全自定義認(rèn)證的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),需要的朋友可以參考借鑒,下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2018-07-07
php中serialize序列化與json性能測試的示例分析
本篇文章介紹了,在php中serialize序列化與json性能測試的示例分析。需要的朋友參考下2013-04-04
php htmlentities()函數(shù)的定義和用法
下面小編就為大家?guī)硪黄猵hp htmlentities()函數(shù)的定義和用法。小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2016-05-05
自己寫的php中文截取函數(shù)mb_strlen和mb_substr
這篇文章主要介紹了自己寫的php中文截取函數(shù)mb_strlen和mb_substr,在服務(wù)器沒mbstring庫時(shí)可以使用本文函數(shù)代替,需要的朋友可以參考下2015-02-02

