Home  >  Article  >  Backend Development  >  Let’s talk about dependency injection, containers and appearance patterns in framework development (middle)

Let’s talk about dependency injection, containers and appearance patterns in framework development (middle)

不言
不言Original
2018-07-14 11:59:091247browse

This article mainly introduces the dependency injection, container and appearance mode (middle part) about the development of the chat framework. It has a certain reference value. Now I share it with you. Friends in need can refer to it

We have solved the coupling problem between objects through dependency injection, but we have not fundamentally solved the problem;

Let us explain this more reasonable and excellent solution through the explanation of container technology. plan.

A container is actually a box, which can contain any service resources: classes, class instances, closures, functions, etc. Not only can the callee be placed inside,

even the main caller can Objects can also be placed inside. So containers are not mysterious. They have the same function as the containers we see every day, which are used to hold things.

At present, container technology has been widely used, and many excellent PHP developments are based on container technology to realize automatic loading of services.

For example: Laravel, ThinkPHP5.1, etc.

Container, also called service container, abbreviated as (IOC)

Basic idea: Just use it and simplify the calling of external objects to the greatest extent, similar to: [Plug and play] The idea

The basic implementation is divided into three steps:

1. Create a container and bind the class and the instantiation process of the class to the container (not limited to classes, but also interfaces or others)

2. Service registration, bind all tool classes that may be used to the container

3. Container dependency: or called dependent container, the container object is directly passed in when calling the work class. However, the instantiation of the tool class is completed by the container.

The following is the source code of the implementation:

';
}
}
//数据验证类
class Validate
{
//数据验证
public function check()
{
return '数据验证成功
'; } } //视图图 class View { //内容输出 public function display() { return '用户登录成功'; } } /******************************************************************************/ //一.创建容器类 class Container { //创建属性,用空数组初始化,该属性用来保存类与类的实例化方法 protected $instance = []; //初始化实例数组,将需要实例化的类,与实例化的方法进行绑定 public function bind($abstract, Closure $process) { //键名为类名,值为实例化的方法 $this->instance[$abstract] = $process; } //创建类实例 public function make($abstract, $params=[]) { return call_user_func_array($this->instance[$abstract],[]); } } /******************************************************************************/ //二、服务绑定: 将类实例注册到容器中 $container = new Container(); //将Db类绑定到容器中 $container->bind('db', function(){ return new Db(); }); //将Validate类实例绑定到容器中 $container->bind('validate', function(){ return new Validate(); }); //将View类实例绑定到容器中 $container->bind('view', function(){ return new View(); }); //测试:查看一下当前容器中的类实例 // var_dump($container->instance); die; /******************************************************************************/ //三、容器依赖:将容器对象,以参数的方式注入到当前工作类中 //用户类:工作类 class User { //创建三个成员属性,用来保存本类所依赖的对象 // protected $db = null; // protected $validate = null; // protected $view = ''; //这三个与外部对象对应的三个属性可以全部删除了,因为它们都已经事先注册到了容器中 //用户登录操作 // public function login(Db $db, Validate $validate, View $view) //此时,只需从外部注入一个容器对象即可,Db,Validate和View实例方法全部封装到了容器中 public function login(Container $container) { //实例化Db类并调用connect()连接数据库 // $db = new Db(); // echo $db->connect(); echo $container->make('db')->connect(); //实例化Validate类并调用check()进行数据验证 // $validate = new Validate(); // echo $validate->check(); echo $container->make('validate')->check(); //实例化视图类并调用display()显示运行结果 // $view = new View(); echo $container->make('view')->display(); } } //在客户端完成工具类的实例化(即工具类实例化前移) // $db = new Db(); // $validate = new Validate(); // $view = new View(); //现在注入过程就非常简单了,只需要从外部注入一个容器对象即可 //创建User类 $user = new User(); //调用User对象的login方法进行登录操作 // echo $user->login(); // 将该类依赖的外部对象以参数方式注入到当前方法中,当然,推荐以构造器方式注入最方便 echo '

用依赖容器进行解藕:

'; // echo $user->login($db, $validate, $view); //现在工作类中的login方法不需要再像对象依赖注入那样写三个对象了,只需要一个容器对象就可以了 echo $user->login($container);

In fact, the container mode can also use the appearance design mode to further simplify it.

The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

Let’s talk about dependency injection, containers and appearance patterns in framework development (Part 1)

The above is the detailed content of Let’s talk about dependency injection, containers and appearance patterns in framework development (middle). For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn