我试图了解一系列instatiation组件类。据我所知,应用程序组件类具有延迟初始化(我已经记录了init()
方法的启动调用)。让我创建一个名为document
的简单测试组件:
class Document extends CApplicationComponent{
private $_width='150';
public function init(){
echo "This is document component init method.";
}
public function getWidth(){
return $this->_width;
}
}
我已将相应的组件数组添加到config.php
:
'components'=>array(
'document' => array( 'class' => 'document')
)
它有效,但我不理解这种感觉。实际上,我们将组件的文件从Document.php
重命名为DDocument.php
。重命名后会引发异常。 为什么?我们没有重命名config.php中指定的组件的类名。组件数组的键是什么意思?它只是Yii::app()
对象的属性,它是CApplicationComponent
的实例吗?