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 相关文章推荐
用session做客户验证时的注意事项
Oct 09 PHP
PHP生成HTML静态页面实例代码
Aug 31 PHP
Server.HTMLEncode让代码在页面里显示为源代码
Dec 08 PHP
php中文乱码怎么办如何让浏览器自动识别utf-8
Jan 15 PHP
PHPUnit安装及使用示例
Oct 29 PHP
php+xml实现在线英文词典之添加词条的方法
Jan 23 PHP
CodeIgniter与PHP5.6的兼容问题
Jul 16 PHP
Linux系统下PHP-FPM的安装和配置教程
Aug 17 PHP
thinkPHP引入类的方法详解
Dec 08 PHP
thinkPHP5 tablib标签库自定义方法详解
May 10 PHP
PHP实现的策略模式简单示例
Aug 25 PHP
yii2中关于加密解密的那些事儿
Jun 12 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
PHP中路径问题的解决方案
2006/10/09 PHP
如何使用PHP计算上一个月的今天
2013/05/23 PHP
PHP之APC缓存详细介绍 apc模块安装
2014/01/13 PHP
PHP获取短链接跳转后的真实地址和响应头信息的方法
2014/07/25 PHP
PHP中的session安全吗?
2016/01/22 PHP
php生成酷炫的四个字符验证码
2016/04/22 PHP
PHP实现加密文本文件并限制特定页面的存取的效果
2016/10/21 PHP
PHP操作Redis数据库常用方法示例
2018/08/25 PHP
JS教程:window.location使用方法的区别介绍
2013/10/04 Javascript
css+js实现部分区域高亮可编辑遮罩层
2014/03/04 Javascript
angularJS中router的使用指南
2015/02/09 Javascript
JS控制文本域只读或可写属性的方法
2016/06/24 Javascript
jQuery实现的自定义滚动条实例详解
2016/09/20 Javascript
bootstrap table 表格中增加下拉菜单末行出现滚动条的快速解决方法
2017/01/05 Javascript
JS模拟超市简易收银台小程序代码解析
2017/08/18 Javascript
使用cropper.js裁剪头像的实例代码
2017/09/29 Javascript
使用vue实现简单键盘的示例(支持移动端和pc端)
2017/12/25 Javascript
axios携带cookie配置详解(axios+koa)
2018/12/28 Javascript
vue 实现把路由单独分离出来
2020/08/13 Javascript
javascript实现一款好看的秒表计时器
2020/09/05 Javascript
vue 数据操作相关总结
2020/12/17 Vue.js
[01:12:44]VG vs Mineski Supermajor 败者组 BO3 第二场 6.6
2018/06/07 DOTA
python实现颜色rgb和hex相互转换的函数
2015/03/19 Python
Python合并多个Excel数据的方法
2018/07/16 Python
python 多进程队列数据处理详解
2019/12/23 Python
tensorflow使用freeze_graph.py将ckpt转为pb文件的方法
2020/04/22 Python
sklearn和keras的数据切分与交叉验证的实例详解
2020/06/19 Python
AE美国鹰日本官方网站: American Eagle Outfitters
2016/12/10 全球购物
Willer台湾:日本高速巴士/夜行巴士预约
2017/07/09 全球购物
Python里面如何实现tuple和list的转换
2012/06/13 面试题
shell程序如何生命变量?shell变量是弱变量吗?
2014/11/10 面试题
学雷锋志愿服务月活动总结
2014/03/09 职场文书
寄语学生的话
2014/04/10 职场文书
电子工程求职信
2014/07/17 职场文书
SQLServer RANK() 排名函数的使用
2022/03/23 SQL Server
Spring Data JPA框架的核心概念和Repository接口
2022/04/28 Java/Android