当前位置:首页 > CMS教程 > 其它CMS > 列表

Yii框架模拟组件调用注入示例

发布:smiling 来源: PHP粉丝网  添加日期:2022-01-22 12:51:38 浏览: 评论:0 

本文实例讲述了Yii框架模拟组件调用注入。分享给大家供大家参考,具体如下:

yii 中组件只有在被调用的时候才会被实例化,且在当前请求中之后调用该组件只会使用上一次实例化的实例,不会重新生成该实例。

  1. 'components'  => array
  2.   '组件调用名'  =>  '组件调用命名空间'
  3.   '组件调用名'  => array
  4.       'class' => '组件调用命名空间' 
  5.   ); 
  6.   '组件调用名'  => function(){ 
  7.     return new '组件调用命名空间'
  8.   } 

一个类似的小组件,可以实现上述功能。方便我们存储服务功能组件。

  1. <?php 
  2. namespace app\components\Services; 
  3. /** 
  4.  * 自定义服务层调用组件 
  5.  * 支持 的实例模式只有yii模式的string 和 array 模式 
  6.  * 例子 
  7.  * services => array( 
  8.  *   'customService' => array( 
  9. *        'class' => 'app\components\Custom\Custom', 
  10. *        'name' => '我是勇哥' 
  11. *      ), 
  12.  * ) 
  13.  */ 
  14. class Services 
  15.   private $dataObj = array(); 
  16.   private $classes = array(); 
  17.   public function __set($name,$value
  18.   { 
  19.     $this->classes[$name] = $value
  20.   } 
  21.   public function __get($name
  22.   { 
  23.     if(!isset($this->dataObj[$name]) || $this->dataObj[$name] == null) 
  24.     { 
  25.       $classInfo = $this->classes[$name]; 
  26.       $this->dataObj[$name] = is_array($classInfo) ? (new $classInfo['class']) : (new $classInfo); 
  27.       if(is_array($classInfo)) 
  28.         foreach($classInfo as $a=>$b
  29.           if($a != 'class'
  30.             $this->dataObj[$name]->$a = $b
  31.     } 
  32.     return $this->dataObj[$name]; 
  33.   } 

web.php

  1. 'components'=>array
  2.   'services' => array
  3.     'class'  =>  'app\components\Services\Services'
  4.     //自定义服务 custom1 
  5.     'custom1Service' => array
  6.       'class' => 'app\services\Custom1\Custom1'
  7.       //需要注入的属性值 
  8.       'name'  => '我是勇哥'
  9.       'age'  => 22 
  10.     ), 
  11.     //自定义服务 custom2 
  12.     'custom2Service' => array
  13.       'class' => 'app\services\Custom2\Custom2'
  14.       //需要注入的属性值 
  15.       'name'  => '我是勇哥'
  16.       'age'  => 22 
  17.     ), 
  18.   ) 

控制层调用

  1. <?php 
  2. namespace app\controllers\home; 
  3. use Yii; 
  4. use yii\web\Controller; 
  5. class IndexController extends Controller 
  6.   public function actionIndex() 
  7.   { 
  8.     echo Yii::$app->services->custom1Service->name; 
  9.   } 
  10. }

Tags: Yii模拟组件

分享到: