行为 yii\base\Behavior
2019-08-23 19:10:19 6 举报
AI智能生成
Yii2 行为
作者其他创作
大纲/内容
public $owner
events()
attach($owner)
$this->owner = $owner
foreach ($this->events() as $event => $handler)
$owner->on($event, is_string($handler) ? [$this, $handler] : $handler)
detach()
foreach ($this->events() as $event => $handler)
$this->owner->off($event, is_string($handler) ? [$this, $handler] : $handler)
$this->owner = null
0 条评论
下一页