yii model

作者: 我是_你的范儿 | 来源:发表于2018-10-31 11:15 被阅读0次
  • model 加入事件监听
public function init()

{

    parent::init();

    $this->on(self::EVENT_BEFORE_UPDATE, [$this, 'beforeUpdate']);

    $this->on(self::EVENT_BEFORE_INSERT, [$this, 'beforeInsert']);

}



public function beforeInsert()

{
    //do something
}

相关文章

网友评论

      本文标题:yii model

      本文链接:https://www.haomeiwen.com/subject/zuootqtx.html