要移除行為,可以調用 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解除下來。一句話,善始善終。