Understanding PHP Dependency Injection Container Series (3) Symfony
Up to now, we have talked about some basic concepts. The examples in the first two articles are very helpful for us to understand the implementation of dependency injection. Now we will go deep into the implementation of Symfony 2 service container.
The dependency injection container in Symfony is managed by a class called sfServiceContainer
The Symfony container can exist as an independent component. Symfony's official Subversion repository can be downloaded: http://svn .symfony-project.com/components/dependency_injection/trunk/
. It is worth noting that this component is still under continuous iterative development, so it may be updated at any time (it was said in 2009, but it seems to have stopped now).
According to Symfony’s design philosophy, any service can be an object managed by a container. In the Zend_Mail example introduced in the previous article, there are two objects: mailer and mail_transport
class Container { static protected $shared = array(); protected $parameters = array(); public function __construct(array $parameters = array()) { $this->parameters = $parameters; } public function getMailTransport() { return new Zend_Mail_Transport_Smtp('smtp.gmail.com', array( 'auth' => 'login', 'username' => $this->parameters['mailer.username'], 'password' => $this->parameters['mailer.password'], 'ssl' => 'ssl', 'port' => 465, )); } public function getMailer() { if (isset(self::$shared['mailer'])) { return self::$shared['mailer']; } $class = $this->parameters['mailer.class']; $mailer = new $class(); $mailer->setDefaultTransport($this->getMailTransport()); return self::$shared['mailer'] = $mailer; } }
If the Container class inherits Symfony's sfServiceContainer class, the code can be made a little simpler
class Container extends sfServiceContainer { static protected $shared = array(); protected function getMailTransportService() { return new Zend_Mail_Transport_Smtp('smtp.gmail.com', array( 'auth' => 'login', 'username' => $this['mailer.username'], 'password' => $this['mailer.password'], 'ssl' => 'ssl', 'port' => 465, )); } protected function getMailerService() { if (isset(self::$shared['mailer'])) { return self::$shared['mailer']; } $class = $this['mailer.class']; $mailer = new $class(); $mailer->setDefaultTransport($this->getMailTransportService()); return self::$shared['mailer'] = $mailer; } }
By observation: The constructor and parameter configuration management code are omitted.
But that’s not all. sfServiceContainer can give us a powerful and concise interface. The following are some points to pay attention to when using the interface:
1. The name of the method to obtain the service must be suffixed with Service. Usually we agree that the name of the method starts with get and ends with Service. Each service has a unique logo. The logo is usually the method name without the prefix and suffix, separated by underscores. If the getMailTransportService() method is defined, the service name is mail_transport
2. The method is of protected type, which means you cannot directly call the method to obtain the service. We will introduce how to use containers to obtain services later.
3. The container can be accessed as an array to obtain the passed parameters. For example: $this[‘mailer.class’]
The service mark must be unique and can only consist of letters, numbers, ‘_’ and ‘.’. '.' can be used as a namespace (such as mail.mailer and mail.transport).
Now let’s see how to use this new container
require_once 'PATH/TO/sf/lib/sfServiceContainerAutoloader.php'; sfServiceContainerAutoloader::register(); $sc = new Container(array( 'mailer.username' => 'foo', 'mailer.password' => 'bar', 'mailer.class' => 'Zend_Mail', )); $mailer = $sc->mailer;
Because the Container class inherits sfServiceContainer, the interface becomes very neat.
The service is accessed through the unified interface
if ($sc->hasService('mailer')) { $mailer = $sc->getService('mailer'); } $sc->setService('mailer', $mailer);
A simpler way is that the service is accessed through attributes
if (isset($sc->mailer)) { $mailer = $sc->mailer; } $sc->mailer = $mailer;
if (!$sc->hasParameter('mailer_class')) { $sc->setParameter('mailer_class', 'Zend_Mail'); } echo $sc->getParameter('mailer_class'); // Override all parameters of the container $sc->setParameters($parameters); // Adds parameters $sc->addParameters($parameters);
Parameters can also be accessed through the container like an array
if (!isset($sc['mailer.class'])) { $sc['mailer.class'] = 'Zend_Mail'; } $mailerClass = $sc['mailer.class'];
The container can be viewed as an iterator, traversing all services
foreach ($sc as $id => $service) { echo sprintf("Service %s is an instance of %s.\n", $id, get_class($service)); }
If there are not many services that need to be managed, although you still have to do a lot of basic work and copy a lot of code, you have to admit that using sfServiceContainer is very useful.
If the number of services to be managed becomes more and more, there must be a better way to describe the services.
This is why most of the time, we do not use the sfServiceContainer class directly. Even so, it is necessary to spend some time talking about it, because it is an important cornerstone of Symfony's dependency injection container.
The above is the content of understanding PHP dependency injection container series (3) Symfony. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!

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 the choice should be based on project requirements. 1.PHP is suitable for web development, with simple syntax and high execution efficiency. 2. Python is suitable for data science and machine learning, with concise syntax and rich libraries.

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 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 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 mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

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 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.
