200字范文,内容丰富有趣,生活中的好帮手!
200字范文 > Laravel实现构造函数自动依赖注入办法【PHP】

Laravel实现构造函数自动依赖注入办法【PHP】

时间:2024-07-05 11:38:24

相关推荐

Laravel实现构造函数自动依赖注入办法【PHP】

后端开发|php教程

Laravel,构造函数,自动依赖注入

后端开发-php教程

同城源码,vscode找不到路径,ubuntu密码钥匙,tomcat部署自启动,sqlite设置数据库大小,爬虫爬自己学校网站可以吗,php 匹配html标签,烟台seo优化推广行业,网站图片延迟加载,政府发言模板lzw

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

vip解析源码系统,ubuntu镜像问题,tomcat本地仓库配置,nodejs爬虫例子,php自动化构建工具,河北全网seo推广流量怎么样lzw

threads = $threads; $this->tags = $tags; $this->threadCreator = $threadCreator; $this->replies = $replies; }}

二维码分享平台源码,ubuntu识别不到ssd,京太tomcat全集百度,爬虫获取script内容,php在线商城答辩的问题,卢阳seolzw

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

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

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

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

它会找出构造函数的参数,再看完整的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 constructors 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反射为开发节省了很多细节,实现了自动依赖注入。这里不做继续深入研究了。

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

kulou = $kulou; $this->junjun = $junjun; }}//$tanteng = new tanteng(new kulou(),new junjun());$reflector = new ReflectionClass( anteng);$constructor = $reflector->getConstructor();$dependencies = $constructor->getParameters();print_r($dependencies);exit;

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

转自:小谈博客 //01/laravel-construct-ioc/

更多关于Laravel相关内容感兴趣的读者可查看本站专题:《Laravel框架入门与进阶教学》、《php优秀开发框架总结》、《smarty模板入门基础教学》、《php日期与时间用法总结》、《php面向对象程序设计入门教学》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教学》及《php常见数据库操作技巧汇总》

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。