Copyright © 2022-2024 aizws.net · 网站版本: v1.2.6·内部版本: v1.23.3·
页面加载耗时 0.00 毫秒·物理内存 74.9MB ·虚拟内存 1303.8MB
欢迎来到 AI 中文社区(简称 AI 中文社),这里是学习交流 AI 人工智能技术的中文社区。 为了更好的体验,本站推荐使用 Chrome 浏览器。
DI(依赖注入)容器是知道如何实例化和配置对象的对象。Yii通过yii \ di \ Container类 提供DI容器。
它支持以下几种DI -
DI容器在类型提示的帮助下支持构造函数注入 -
class Object1 { public function __construct(Object2 $object2) { } } $object1 = $container->get('Object1'); // which is equivalent to the following: $object2 = new Object2; $object1 = new Object1($object2);
通过配置支持属性和setter注入 -
<?php use yii\base\Object; class MyObject extends Object { public $var1; private $_var2; public function getVar2() { return $this->_var2; } public function setVar2(MyObject2 $var2) { $this->_var2 = $var2; } } $container->get('MyObject', [], [ 'var1' => $container->get('MyOtherObject'), 'var2' => $container->get('MyObject2'), ]); ?>
在PHP可调用注入的情况下,容器将使用已注册的PHP回调来构建类的新实例 -
$container->set('Object1', function () { $object1 = new Object1(new Object2); return $object1; }); $object1 = $container->get('Object1');
控制器动作注入是一种使用类型提示声明依赖关系的DI类型。这对于保持MVC控制器纤薄轻巧纤薄非常有用 -
public function actionSendToAdmin(EmailValidator $validator, $email) { if ($validator->validate($email)) { // sending email } }
你可以使用 yii \ db \ Container :: set() 方法来注册依赖关系 -
<?php $container = new \yii\di\Container; // register a class name as is. This can be skipped. $container->set('yii\db\Connection'); // register an alias name. You can use $container->get('MyObject') // to create an instance of Connection $container->set('MyObject', 'yii\db\Connection'); // register an interface // When a class depends on the interface, the corresponding class // will be instantiated as the dependent object $container->set('yii\mail\MailInterface', 'yii\swiftmailer\Mailer'); // register an alias name with class configuration // In this case, a "class" element is required to specify the class $container->set('db', [ 'class' => 'yii\db\Connection', 'dsn' => 'mysql:host=127.0.0.1;dbname = helloworld', 'username' => 'vladimir', 'password' => '12345', 'charset' => 'utf8', ]); // register a class with configuration. The configuration // will be applied when the class is instantiated by get() $container->set('yii\db\Connection', [ 'dsn' => 'mysql:host=127.0.0.1;dbname = helloworld', 'username' => 'vladimir', 'password' => '12345', 'charset' => 'utf8', ]); // register a PHP callable // The callable will be executed each time when $container->get('db') is called $container->set('db', function ($container, $params, $config) { return new \yii\db\Connection($config); }); // register a component instance // $container->get('pageCache') will return the same instance each time when it //is called $container->set('pageCache', new FileCache); ?>
第1步 - 在 组件 文件夹内使用以下代码创建一个名为 MyInterface.php 的文件。
<?php namespace app\components; interface MyInterface { public function test(); } ?>
第2步 - 在components文件夹中,创建两个文件。
First.php -
<?php namespace app\components; use app\components\MyInterface; class First implements MyInterface { public function test() { echo "First class <br>"; } } ?>
Second.php -
<?php app\components; use app\components\MyInterface; class Second implements MyInterface { public function test() { echo "Second class <br>"; } } ?>
第3步 - 现在,添加一个 actionTestInterface 到SiteController。
public function actionTestInterface() { $container = new \yii\di\Container(); $container->set ("\app\components\MyInterface","\app\components\First"); $obj = $container->get("\app\components\MyInterface"); $obj->test(); // print "First class" $container->set ("\app\components\MyInterface","\app\components\Second"); $obj = $container->get("\app\components\MyInterface"); $obj->test(); // print "Second class" }
第4步 - 转到 http:// localhost:8080 / index.php?r = site / test- interface, 您应该看到以下内容。
这种方法很方便,因为我们可以在一个地方设置类,其他代码将自动使用新的类。
Yii DAO(数据库访问对象)提供了访问数据库的API。它也作为其他数据库访问方法的基础:活动记录和查询构建器。Yii DAO支持以下数据库 -MySQL的MSSQLSQLite的MariaDB的PostgreSQL的 ...