当前位置:首页 > PHP教程 > php高级应用 > 列表

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

发布:smiling 来源: PHP粉丝网  添加日期:2019-11-14 15:42:41 浏览: 评论:0 

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

$component->detachBehavior('myBehavior1');

也可以移除全部行为:

$component->detachBehaviors();

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

  1. public function detach(){ 
  2.  
  3.   // 这得是个名花有主的行为才有解除一说 
  4.  
  5.   if ($this->owner) { 
  6.  
  7.     // 遍历行为定义的事件,一一解除 
  8.  
  9.     foreach ($this->events() as $event => $handler) { 
  10.  
  11.       $this->owner->off($eventis_string($handler) ? [$this
  12.  
  13.         $handler] : $handler); 
  14. //phpfensi.com 
  15.     } 
  16.  
  17.     $this->owner = null; 
  18.  
  19.   } 
  20.  

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

Tags: Yii框架 移除组件

分享到: