欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHP的Yii框架中移除组件所绑定的行为的方法

程序员文章站 2023-12-14 19:48:16
要移除行为,可以调用 yii\base\component::detachbehavior() 方法用行为相关联的名字实现: $component->det...

要移除行为,可以调用 yii\base\component::detachbehavior() 方法用行为相关联的名字实现:

$component->detachbehavior('mybehavior1');

也可以移除全部行为:

$component->detachbehaviors();

这上面两种方法,都会调用到 yii\base\behavior::detach() ,其代码如下:

public function detach()
{
  // 这得是个名花有主的行为才有解除一说
  if ($this->owner) {

    // 遍历行为定义的事件,一一解除
    foreach ($this->events() as $event => $handler) {
      $this->owner->off($event, is_string($handler) ? [$this,
        $handler] : $handler);
    }
    $this->owner = null;
  }
}

与 yii\base\behavior::attach() 相反,解除的过程就是干两件事: 一是将 $owner 设置为 null ,表示这个行为没有依附到任何类上。 二是通过component的 off() 将绑定到类上的事件hanlder解除下来。一句话,善始善终。

上一篇:

下一篇: