yii model
2018-10-31 本文已影响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
}