


Detailed introduction to dependency injection and IoC in Laravel (with examples)
This article brings you a detailed introduction to dependency injection and IoC in Laravel (with examples). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
As developers, we are always trying to find new ways to write well-designed and robust code by using design patterns and trying new robust frameworks. In this article, we'll explore the Dependency Injection design pattern with Laravel's IoC components and see how it can improve our designs.
Dependency Injection
The term dependency injection is a term proposed by Martin Fowler, which is the act of injecting components into an application. As Ward Cunningham said:
Dependency injection is a key element in agile architecture.
Let's look at an example:
class UserProvider{ protected $connection; public function __construct(){ $this->connection = new Connection; } public function retrieveByCredentials( array $credentials ){ $user = $this->connection ->where( 'email', $credentials['email']) ->where( 'password', $credentials['password']) ->first(); return $user; } }
If you want to test or maintain this class, you must access the instance of the database to perform some queries. To avoid having to do this, you can decouple this class from other classes, you have one of three options to inject the Connection
class without using it directly.
When injecting components into a class, you can use one of the following three options:
Constructor method injection
class UserProvider{ protected $connection; public function __construct( Connection $con ){ $this->connection = $con; } ...
Setter method injection
Similarly, we also Dependencies can be injected using the Setter method:
class UserProvider{ protected $connection; public function __construct(){ ... } public function setConnection( Connection $con ){ $this->connection = $con; } ...
Interface injection
interface ConnectionInjector{ public function injectConnection( Connection $con ); } class UserProvider implements ConnectionInjector{ protected $connection; public function __construct(){ ... } public function injectConnection( Connection $con ){ $this->connection = $con; } }
When a class implements our interface, we define the injectConnection
method to resolve dependencies.
Advantages
Now when testing our classes we can mock dependent classes and pass them as parameters. Each class must focus on a specific task and should not be concerned with resolving their dependencies. This way, you'll have a more focused and maintainable application.
If you want to learn more about DI, Alejandro Gervassio has covered it extensively and expertly in this series of articles, so be sure to read them. So, what is IoC? IoC (Inversion of Control) does not require the use of dependency injection, but it can help you manage dependencies effectively.
Inversion of Control
Ioc is a simple component that makes it easier to resolve dependencies. You can describe the object as a container, and every time a class is resolved, dependencies are automatically injected.
Laravel Ioc
Laravel Ioc is a little special in the way it resolves dependencies when you request an object:
We use A simple example will improve it in this article. The SimpleAuth
class depends on FileSessionStorage
, so our code might look like this:
class FileSessionStorage{ public function __construct(){ session_start(); } public function get( $key ){ return $_SESSION[$key]; } public function set( $key, $value ){ $_SESSION[$key] = $value; } } class SimpleAuth{ protected $session; public function __construct(){ $this->session = new FileSessionStorage; } } //创建一个 SimpleAuth $auth = new SimpleAuth();
This is a classic approach, let's start with using the constructor Function injection begins.
class SimpleAuth{ protected $session; public function __construct( FileSessionStorage $session ){ $this->session = $session; } }
Now we create an object:
$auth = new SimpleAuth( new FileSessionStorage() );
Now I want to use Laravel Ioc to manage all this.
Because the Application
class inherits from the Container
class, you can access the container through the App
facade.
App::bind( 'FileSessionStorage', function(){ return new FileSessionStorage; });
bind
The first parameter of the method is the unique ID to be bound to the container, and the second parameter is a callback function that is executed whenever the FileSessionStorage
class is executed. , we can also pass a string representing the class name as shown below.
Note: If you look at the Laravel package, you will see that bindings are sometimes grouped, such as ( view
, view.finder
...).
Assuming we convert the session store to Mysql storage, our class should look like:
class MysqlSessionStorage{ public function __construct(){ //... } public function get($key){ // do something } public function set( $key, $value ){ // do something } }
Now that we have changed the dependencies, we also need to change the SimpleAuth
construct function and bind the new object to the container!
High-level modules should not depend on low-level modules, both should depend on abstract objects.
Abstraction should not depend on details, details should depend on abstraction.Robert C. Martin
Our SimpleAuth
class should not care about how our storage is done, instead it should focus more on consuming the service.
Therefore, we can abstractly implement our storage:
interface SessionStorage{ public function get( $key ); public function set( $key, $value ); }
so that we can implement and request an instance of the SessionStorage
interface:
class FileSessionStorage implements SessionStorage{ public function __construct(){ //... } public function get( $key ){ //... } public function set( $key, $value ){ //... } } class MysqlSessionStorage implements SessionStorage{ public function __construct(){ //... } public function get( $key ){ //... } public function set( $key, $value ){ //... } } class SimpleAuth{ protected $session; public function __construct( SessionStorage $session ){ $this->session = $session; } }
If we Use App::make('SimpleAuth')
to resolve the SimpleAuth
class through the container, the container will throw BindingResolutionException
trying to resolve the class from the binding After that, go back to the reflection method and resolve all dependencies.
Uncaught exception 'Illuminate\Container\BindingResolutionException' with message 'Target [SessionStorage] is not instantiable.'
The container is trying to instantiate the interface. We can make a specific binding for this interface.
App:bind( 'SessionStorage', 'MysqlSessionStorage' );
Now every time we try to resolve this interface from the container, we will get a MysqlSessionStorage
instance. If we want to switch our storage service, we just change this binding.
Note: If you want to check whether a class has been bound in the container, you can use App::bound('ClassName')
, or you can use App::bindIf('ClassName')
To register a binding that has not yet been registered.
Laravel Ioc also provides App::singleton('ClassName', 'resolver')
to handle singleton binding.
You can also use App::instance('ClassName', 'instance')
to create a singleton binding.
If the container cannot resolve the dependency, it will throw ReflectionException
, but we can use the App::resolvingAny(Closure)
method to resolve any specified type in the form of a callback function .
Note: If you have registered a resolving method for a certain type, the resolvingAny
method will still be called, but it will return directly bind
The return value of the method.
Tips
Where to write these bindings:If it is just a small application, you can write it in a global start file global/start.php
, but if the project becomes larger and larger, it will be necessary to use Service Provider.
Testing:
When you need quick and easy testing, you can consider usingphp artisan tinker
. It is very powerful and can help you improve your Laravel testing process. Reflection API:
PHP’s Reflection API is very powerful. If you want to go deep into Laravel Ioc, you need to be familiar with the Reflection API. You can first read this tutorial to get more information. [Related recommendations: PHP video tutorial]The above is the detailed content of Detailed introduction to dependency injection and IoC in Laravel (with examples). For more information, please follow other related articles on the PHP Chinese website!

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

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 remains important in modern web development, especially in content management and e-commerce platforms. 1) PHP has a rich ecosystem and strong framework support, such as Laravel and Symfony. 2) Performance optimization can be achieved through OPcache and Nginx. 3) PHP8.0 introduces JIT compiler to improve performance. 4) Cloud-native applications are deployed through Docker and Kubernetes to improve flexibility and scalability.

PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.

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.

PHP is used to build dynamic websites, and its core functions include: 1. Generate dynamic content and generate web pages in real time by connecting with the database; 2. Process user interaction and form submissions, verify inputs and respond to operations; 3. Manage sessions and user authentication to provide a personalized experience; 4. Optimize performance and follow best practices to improve website efficiency and security.

PHP and Python each have their own advantages and are suitable for different scenarios. 1.PHP is suitable for web development and provides built-in web servers and rich function libraries. 2. Python is suitable for data science and machine learning, with concise syntax and a powerful standard library. When choosing, it should be decided based on project requirements.

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 and Python have their own advantages and disadvantages, and the choice depends on project needs and personal preferences. 1.PHP is suitable for rapid development and maintenance of large-scale web applications. 2. Python dominates the field of data science and machine learning.
