search
HomeBackend DevelopmentPHP TutorialHow 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类的构造函数需要什么参数,这个需要的参数也叫作依赖, 然后解决依赖. 这个就叫依赖注入. 一般通过依赖注入的方式来实现控制反转. 上述的那个专门的类一般也叫服务容器.

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
Optimize PHP Code: Reducing Memory Usage & Execution TimeOptimize PHP Code: Reducing Memory Usage & Execution TimeMay 10, 2025 am 12:04 AM

TooptimizePHPcodeforreducedmemoryusageandexecutiontime,followthesesteps:1)Usereferencesinsteadofcopyinglargedatastructurestoreducememoryconsumption.2)LeveragePHP'sbuilt-infunctionslikearray_mapforfasterexecution.3)Implementcachingmechanisms,suchasAPC

PHP Email: Step-by-Step Sending GuidePHP Email: Step-by-Step Sending GuideMay 09, 2025 am 12:14 AM

PHPisusedforsendingemailsduetoitsintegrationwithservermailservicesandexternalSMTPproviders,automatingnotificationsandmarketingcampaigns.1)SetupyourPHPenvironmentwithawebserverandPHP,ensuringthemailfunctionisenabled.2)UseabasicscriptwithPHP'smailfunct

How to Send Email via PHP: Examples & CodeHow to Send Email via PHP: Examples & CodeMay 09, 2025 am 12:13 AM

The best way to send emails is to use the PHPMailer library. 1) Using the mail() function is simple but unreliable, which may cause emails to enter spam or cannot be delivered. 2) PHPMailer provides better control and reliability, and supports HTML mail, attachments and SMTP authentication. 3) Make sure SMTP settings are configured correctly and encryption (such as STARTTLS or SSL/TLS) is used to enhance security. 4) For large amounts of emails, consider using a mail queue system to optimize performance.

Advanced PHP Email: Custom Headers & FeaturesAdvanced PHP Email: Custom Headers & FeaturesMay 09, 2025 am 12:13 AM

CustomheadersandadvancedfeaturesinPHPemailenhancefunctionalityandreliability.1)Customheadersaddmetadatafortrackingandcategorization.2)HTMLemailsallowformattingandinteractivity.3)AttachmentscanbesentusinglibrarieslikePHPMailer.4)SMTPauthenticationimpr

Guide to Sending Emails with PHP & SMTPGuide to Sending Emails with PHP & SMTPMay 09, 2025 am 12:06 AM

Sending mail using PHP and SMTP can be achieved through the PHPMailer library. 1) Install and configure PHPMailer, 2) Set SMTP server details, 3) Define the email content, 4) Send emails and handle errors. Use this method to ensure the reliability and security of emails.

What is the best way to send an email using PHP?What is the best way to send an email using PHP?May 08, 2025 am 12:21 AM

ThebestapproachforsendingemailsinPHPisusingthePHPMailerlibraryduetoitsreliability,featurerichness,andeaseofuse.PHPMailersupportsSMTP,providesdetailederrorhandling,allowssendingHTMLandplaintextemails,supportsattachments,andenhancessecurity.Foroptimalu

Best Practices for Dependency Injection in PHPBest Practices for Dependency Injection in PHPMay 08, 2025 am 12:21 AM

The reason for using Dependency Injection (DI) is that it promotes loose coupling, testability, and maintainability of the code. 1) Use constructor to inject dependencies, 2) Avoid using service locators, 3) Use dependency injection containers to manage dependencies, 4) Improve testability through injecting dependencies, 5) Avoid over-injection dependencies, 6) Consider the impact of DI on performance.

PHP performance tuning tips and tricksPHP performance tuning tips and tricksMay 08, 2025 am 12:20 AM

PHPperformancetuningiscrucialbecauseitenhancesspeedandefficiency,whicharevitalforwebapplications.1)CachingwithAPCureducesdatabaseloadandimprovesresponsetimes.2)Optimizingdatabasequeriesbyselectingnecessarycolumnsandusingindexingspeedsupdataretrieval.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

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

Hot Tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.