yii|yii model

  • 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 }

    推荐阅读