yii中的活动是什么?如何在yii中使用事件? 例如:
public function onForestRan($event){
$this->raiseEvent('onForestRan', $event);
}
$myComponent->onForestRan = array(new SomeOtherClass, 'eventHandler1');
什么时候触发事件?
答案 0 :(得分:1)
在你从那里得到这个的页面上有一个链接到另一个资源,解释它非常好 http://www.kofrimpong.com/post/11/How+do+you+create+your+own+event+object%3F
总之,你必须提出这个事件。