超级计算机囧囧囧's Archivers

From admin on 2012-10-16 00:05:24

Yii-创建组件

组件文件:
class MyComponent extends CApplicationComponent
{
public $someconfig='somedefault';
public function init() {
// Init this component
// $this->someconfig is already available
}
public function myfunction() {...}
}
main配置文件中
// main configuration:
...
'components'=>array(
'something'=>array(
'class'=>'MyComponent',
'someconfig'=>'someothervalue',
),
...
调用:
Yii::app()->something->myfunction();

查看完整版本: Yii-创建组件

Tags:


©超级计算机囧囧囧