


How can we understand the two concepts of reflection and dependency injection in PHP in an easy-to-understand manner?
Please give me some advice, thank you
Reply content:
Please give me some advice, thank you
No need to understand, really, I’m not kidding you.
Unless you develop frameworks like ZendFramework, ThinkPHP, CakePHP, etc., there is almost no chance to use this.
This is a very low-level thing, especially the application scenario of dependency injection is to assist development. As long as the selected framework supports dependency injection, there is no need to implement it yourself. Reflection is similar. In business logic, I have never encountered a problem that must be solved by reflection. It is also only used by frameworks.
Oh, I read it wrong. You only need to know the concept. In layman’s terms,
Reflection is to obtain its information through reverse analysis of object instances. For example, based on reflection, it automatically generates the PHPDocument file of its corresponding class based on the object instance.
Dependency injection is It refers to automatically analyzing the parameters required when constructing objects and calling methods, and automatically injects the parameters. Usually instances of such objects need to be obtained through specific methods and are difficult to construct through simple new.
The so-called reflection is to dynamically obtain class information and can also make modifications. For example, some magic methods __FUNCTION__, __METHOD__. To be more advanced, you can use reflectionClass, which is reflection class acquisition.
Dependency injection, also called inversion of control. I’ll show you the code when I have time
I can’t explain clearly, it’s mainly some magic methods of the class
You can search PHP serialization vulnerability on Baidu
1 First, let me explain the "dependency injection" that I am familiar with. Dependency injection refers to passing the dependent object in the form of parameters at once, instead of displaying new when using it. Take a millet:
<code>//这就是依赖注入。。。 class Bar { } class Foo { protected $bar; public function __construct(Bar $bar) { $this->bar = $bar; } public function getBar() { return $this->bar; } } $bar = new Bar(); $foo = new Foo($bar); //将类Bar的对象$bar通过参数的形式注入进去 </code>
2 Extension:
//Dependency class Human
abstract class Human
{
}
//Inherits Woman which depends on class Human
class Woman extends Human
{
}
class Man extends Human
{
<code>protected $wife; public function setWife(Human $human) { $this->wife = $human; }</code>
}
$man = new Man();
$man->setWife(new Woman());
Summary: When injecting dependency on a previously declared class, this class can be any class that inherits the dependent class (the same applies to interfaces)
Reflection is reverse mapping, used to obtain information about a class (not just a class). For example, you want to know what methods a class contains, what parameters these methods need to pass in, and what type each parameter is.
Dependency injection requires reflection, such as:
<code>class A { protected $b; public function __constrcut(B $b) { $this->b = $b; } } // 通过控制反转容器生成 A 的实例时,会通过反射发现 A 的构造函数需要一个 B 类的实例 // 于是自动向 A 类的构造函数注入 B 类的实例 $a = IoC::make(A::class);</code>
Reflection also has many uses, such as making a series of assertions in unit tests, determining the acquisition of some private properties, and generating PHPDocument documents (because reflection can obtain comments on methods and classes)
Inversion of control and dependency injection obviously must use this feature.
For dependency injection, you can refer to this article on my blog. Although it is written for the Laravel framework, it is also universal (the design patterns used by Laravel are very rich and not abused. They are just right and very suitable for learning):
https://www.insp.top/article/learn-laravel-container
Dependency injection is to dynamically load class objects and instantiate them. Generally used to read configuration files and load them on demand.
In addition to doing this, reflection can also dynamically access members of the object. The reflection of scripting language php is more powerful, and it can also add new members to the object by modifying the association table inside the object.
For ie8, use e.cancelBubble=true
For others, use e.stopPropagation()
Dependency injection, my understanding is that the object is loaded into the constructor of the class. In order to decouple, the interface is generally chosen. After the configuration is completed, it is loaded into the main class on demand for assembly to achieve multiple functions.
Reflection is to take out Properties and methods in classes
给你推荐个地址吧,http://www.digpage.com/di.html,内容将的是yii2的依赖注入,里面的例子你看一遍差不多能明白是怎么回事了。
https://3v4l.org/1OVmo
<code>class Request { public function hello() { return 'hello '; } } class App { public function name() { return 'the app'; } public function response(Request $req, App $app) { return $req->hello().$app->name(); } } //依赖查找 or 自动依赖注入 $c['App'] = new App; $c['Request'] = new Request; $r = new ReflectionMethod('App', 'response'); $params = $r->getParameters(); $params = array_map(function($p) use ($c) { $className = $p->getClass()->name; return $c[$className]??null; }, $params); $res = $r->invokeArgs($c['App'], $params); //手动依赖注入 $app = new App; $req = new Request; $res = $app->response($req, $app);</code>
只是名字比较唬人,其实很简单
反射其实就是获取类的信息(把类也看成是对象,然后通过反射类获取这个对象的一些属性), 你比如说有个发送邮件的类。
<code><?php class MailerService { public $mail; public function __construct(Mailer $mail) { $this->setHandle($mail); } public function setHandle(Mailer $mail) { $this->mail = $mail; } }</code>
比如说:
我想知道这个类有哪些方法, 那我可以这样:
<code><?php $class = new ReflectionClass('MailerService'); $methods = $class->getMethods();</code>
我想知道这个类的构造函数要传什么参数
<code><?php $method = new ReflectionMethod('MailerService', '__construct'); $paramters = $method->getParameters();</code>
一言以蔽之, 反射就是获取类的信息的.
控制反转也很好理解,不过要先搞清楚, 控制反转和依赖注入不是一回事.
控制反转是一种目的,而实现方法之一就是依赖注入.
所谓的依赖注入就是不自己new class了, 而是由一个专门的类去做, 由这个类去解决类的依赖的问题,比如上面的MailerService类就依赖Mailer类, 这个专门的类会通过反射去获取MailerService类的构造函数需要什么参数,这个需要的参数也叫作依赖, 然后解决依赖. 这个就叫依赖注入. 一般通过依赖注入的方式来实现控制反转. 上述的那个专门的类一般也叫服务容器.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.
