Laravel实现构造函数自动依赖注入的方法


Posted in PHP onMarch 16, 2016

本文实例讲述了Laravel实现构造函数自动依赖注入的方法。分享给大家供大家参考,具体如下:

在Laravel的构造函数中可以实现自动依赖注入,而不需要实例化之前先实例化需要的类,如代码所示:

<?php
namespace Lio\Http\Controllers\Forum;
use Lio\Forum\Replies\ReplyRepository;
use Lio\Forum\Threads\ThreadCreator;
use Lio\Forum\Threads\ThreadCreatorListener;
use Lio\Forum\Threads\ThreadDeleterListener;
use Lio\Forum\Threads\ThreadForm;
use Lio\Forum\Threads\ThreadRepository;
use Lio\Forum\Threads\ThreadUpdaterListener;
use Lio\Http\Controllers\Controller;
use Lio\Tags\TagRepository;
class ForumThreadsController extends Controller implements ThreadCreatorListener, ThreadUpdaterListener, ThreadDeleterListener
{
 protected $threads;
 protected $tags;
 protected $currentSection;
 protected $threadCreator;
 public function __construct(
  ThreadRepository $threads,
  ReplyRepository $replies,
  TagRepository $tags,
  ThreadCreator $threadCreator
 ) {
  $this->threads = $threads;
  $this->tags = $tags;
  $this->threadCreator = $threadCreator;
  $this->replies = $replies;
 }
}

注意构造函数中的几个类型约束,其实并没有地方实例化这个Controller并把这几个类型的参数传进去,Laravel会自动检测类的构造函数中的类型约束参数,并自动识别是否初始化并传入。

源码vendor/illuminate/container/Container.php中的build方法:

$constructor = $reflector->getConstructor();
dump($constructor);

这里会解析类的构造函数,在这里打印看:

Laravel实现构造函数自动依赖注入的方法

它会找出构造函数的参数,再看完整的build方法进行的操作:

public function build($concrete, array $parameters = [])
{
 // If the concrete type is actually a Closure, we will just execute it and
 // hand back the results of the functions, which allows functions to be
 // used as resolvers for more fine-tuned resolution of these objects.
 if ($concrete instanceof Closure) {
  return $concrete($this, $parameters);
 }
 $reflector = new ReflectionClass($concrete);
 // If the type is not instantiable, the developer is attempting to resolve
 // an abstract type such as an Interface of Abstract Class and there is
 // no binding registered for the abstractions so we need to bail out.
 if (! $reflector->isInstantiable()) {
  $message = "Target [$concrete] is not instantiable.";
  throw new BindingResolutionContractException($message);
 }
 $this->buildStack[] = $concrete;
 $constructor = $reflector->getConstructor();
 // If there are no constructors, that means there are no dependencies then
 // we can just resolve the instances of the objects right away, without
 // resolving any other types or dependencies out of these containers.
 if (is_null($constructor)) {
  array_pop($this->buildStack);
  return new $concrete;
 }
 $dependencies = $constructor->getParameters();
 // Once we have all the constructor's parameters we can create each of the
 // dependency instances and then use the reflection instances to make a
 // new instance of this class, injecting the created dependencies in.
 $parameters = $this->keyParametersByArgument(
  $dependencies, $parameters
 );
 $instances = $this->getDependencies(
  $dependencies, $parameters
 );
 array_pop($this->buildStack);
 return $reflector->newInstanceArgs($instances);
}

具体从容器中获取实例的方法:

protected function resolveClass(ReflectionParameter $parameter)
{
 try {
  return $this->make($parameter->getClass()->name);
 }
 // If we can not resolve the class instance, we will check to see if the value
 // is optional, and if it is we will return the optional parameter value as
 // the value of the dependency, similarly to how we do this with scalars.
 catch (BindingResolutionContractException $e) {
  if ($parameter->isOptional()) {
   return $parameter->getDefaultValue();
  }
  throw $e;
 }
}

框架底层通过Reflection反射为开发节省了很多细节,实现了自动依赖注入。这里不做继续深入研究了。

写了一个模拟这个过程的类测试:

<?php
class kulou
{
 //
}
class junjun
{
 //
}
class tanteng
{
 private $kulou;
 private $junjun;
 public function __construct(kulou $kulou,junjun $junjun)
 {
  $this->kulou = $kulou;
  $this->junjun = $junjun;
 }
}
//$tanteng = new tanteng(new kulou(),new junjun());
$reflector = new ReflectionClass('tanteng');
$constructor = $reflector->getConstructor();
$dependencies = $constructor->getParameters();
print_r($dependencies);exit;

原理是通过ReflectionClass类解析类的构造函数,并且取出构造函数的参数,从而判断依赖关系,从容器中取,并自动注入。

转自:小谈博客 http://www.tantengvip.com/2016/01/laravel-construct-ioc/

希望本文所述对大家基于Laravel框架的PHP程序设计有所帮助。

PHP 相关文章推荐
Windows下PHP5和Apache的安装与配置
Sep 05 PHP
PHP设计模式之迭代器模式的深入解析
Jun 13 PHP
PHP 函数call_user_func和call_user_func_array用法详解
Mar 02 PHP
PHP命名空间(namespace)的动态访问及使用技巧
Aug 18 PHP
php中使用sftp教程
Mar 30 PHP
PHP使用pear自带的mail类库发邮件的方法
Jul 08 PHP
关于php中的json_encode()和json_decode()函数的一些说明
Nov 20 PHP
thinkPHP中session()方法用法详解
Dec 08 PHP
PHP+Session防止表单重复提交的解决方法
Apr 09 PHP
PHP工厂模式的日常使用
Mar 20 PHP
浅谈php调用python文件
Mar 29 PHP
PHP7.3.10编译安装教程
Oct 08 PHP
PHP 二维数组和三维数组的过滤
Mar 16 #PHP
详解php中反射的应用
Mar 15 #PHP
php实现图片上传并进行替换操作
Mar 15 #PHP
php模板引擎技术简单实现
Mar 15 #PHP
9个比较实用的php代码片段
Mar 15 #PHP
Laravel使用Caching缓存数据减轻数据库查询压力的方法
Mar 15 #PHP
php图片添加文字水印实现代码
Mar 15 #PHP
You might like
亚洲咖啡有什么?亚洲咖啡产地介绍 亚洲咖啡有什么特点?
2021/03/05 新手入门
使用php 获取时间今天明天昨天时间戳的详解
2013/06/20 PHP
php读取mssql的ntext字段返回值为空的解决方法
2014/12/30 PHP
php通过ksort()函数给关联数组按照键排序的方法
2015/03/18 PHP
weiphp微信公众平台授权设置
2016/01/04 PHP
JavaScript replace(rgExp,fn)正则替换的用法
2010/03/04 Javascript
jQuery 工具函数学习资料
2010/04/29 Javascript
jquery的extend和fn.extend的使用说明
2011/01/09 Javascript
Json和Jsonp理论实例代码详解
2013/11/15 Javascript
jquery操作select大全
2014/04/25 Javascript
JavaScrip调试技巧之断点调试
2015/10/22 Javascript
Angularjs过滤器使用详解
2016/05/25 Javascript
bootstrap和jQuery.Gantt的css冲突 如何解决
2016/05/29 Javascript
求js数组的最大值和最小值的四种方法
2017/03/03 Javascript
微信小程序 生命周期函数详解
2017/05/24 Javascript
JS实现多级菜单中当前菜单不随页面跳转样式而发生变化
2017/05/30 Javascript
简单的vuex 的使用案例笔记
2018/04/13 Javascript
微信小程序监听用户登录事件的实现方法
2019/11/11 Javascript
教你如何在Django 1.6中正确使用 Signal
2014/06/22 Python
编写同时兼容Python2.x与Python3.x版本的代码的几个示例
2015/03/30 Python
Python实现监控程序执行时间并将其写入日志的方法
2015/06/30 Python
Python装饰器基础详解
2016/03/09 Python
Python统计python文件中代码,注释及空白对应的行数示例【测试可用】
2018/07/25 Python
Python从单元素字典中获取key和value的实例
2018/12/31 Python
Python面向对象总结及类与正则表达式详解
2019/04/18 Python
python实现拼图小游戏
2020/02/22 Python
Python 实现敏感目录扫描的示例代码
2020/05/21 Python
Python中BeautifulSoup通过查找Id获取元素信息
2020/12/07 Python
详解win10下pytorch-gpu安装以及CUDA详细安装过程
2021/01/28 Python
如何用 Python 制作一个迷宫游戏
2021/02/25 Python
Stokke美国官方网店:高级儿童家具、推车、汽车座椅和配件
2020/06/06 全球购物
家长通知书教师评语
2014/04/17 职场文书
寒暑假实习证明书模板
2014/11/29 职场文书
就业指导讲座心得体会
2016/01/15 职场文书
创业计划书之孕婴生活馆
2019/11/11 职场文书
Python 恐龙跑跑小游戏实现流程
2022/02/15 Python