您现在的位置是:网站首页> 编程资料编程资料
Yii框架模拟组件调用注入示例_php实例_
2023-05-25
212人已围观
简介 Yii框架模拟组件调用注入示例_php实例_
本文实例讲述了Yii框架模拟组件调用注入。分享给大家供大家参考,具体如下:
yii 中组件只有在被调用的时候才会被实例化,且在当前请求中之后调用该组件只会使用上一次实例化的实例,不会重新生成该实例。
'components' => array( '组件调用名' => '组件调用命名空间', '组件调用名' => array( 'class' => '组件调用命名空间' ); '组件调用名' => function(){ return new '组件调用命名空间'; } ) 一个类似的小组件,可以实现上述功能。方便我们存储服务功能组件。
array( * 'customService' => array( * 'class' => 'app\components\Custom\Custom', * 'name' => '我是勇哥' * ), * ) */ class Services { private $dataObj = array(); private $classes = array(); public function __set($name,$value) { $this->classes[$name] = $value; } public function __get($name) { if(!isset($this->dataObj[$name]) || $this->dataObj[$name] == null) { $classInfo = $this->classes[$name]; $this->dataObj[$name] = is_array($classInfo) ? (new $classInfo['class']) : (new $classInfo); if(is_array($classInfo)) foreach($classInfo as $a=>$b) if($a != 'class') $this->dataObj[$name]->$a = $b; } return $this->dataObj[$name]; } } web.php
'components'=>array( 'services' => array( 'class' => 'app\components\Services\Services', //自定义服务 custom1 'custom1Service' => array( 'class' => 'app\services\Custom1\Custom1', //需要注入的属性值 'name' => '我是勇哥', 'age' => 22 ), //自定义服务 custom2 'custom2Service' => array( 'class' => 'app\services\Custom2\Custom2', //需要注入的属性值 'name' => '我是勇哥', 'age' => 22 ), ) )
控制层调用
services->custom1Service->name; } }
更多关于Yii相关内容感兴趣的读者可查看本站专题:《Yii框架入门及常用技巧总结》、《php优秀开发框架总结》、《smarty模板入门基础教程》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家基于Yii框架的PHP程序设计有所帮助。
您可能感兴趣的文章:
相关内容
- 在Laravel中使用MongoDB的方法示例_php实例_
- PHP使用递归按层级查找数据的方法_php实例_
- php和js实现根据子网掩码和ip计算子网功能示例_php技巧_
- PHP发送邮件确认验证注册功能示例【修改别人邮件类】_php技巧_
- php进程(线程)通信基础之System V共享内存简单实例分析_php技巧_
- PHP多进程简单实例小结_php技巧_
- PHPUnit + Laravel单元测试常用技能_php实例_
- PHP用swoole+websocket和redis实现web一对一聊天_php实例_
- 基于thinkphp6.0的success、error实现方法_php实例_
- php实现JWT(json web token)鉴权实例详解_php实例_
