TimestampBehavior::className(), * 'createdAtAttribute' => 'create_time', * 'updatedAtAttribute' => 'update_time', * 'value' => new Expression('NOW()'), * ], * ]; * } * ``` * * TimestampBehavior also provides a method named [[touch()]] that allows you to assign the current * timestamp to the specified attribute(s) and save them to the database. For example, * * ```php * $this->timestamp->touch('creation_time'); * ``` * * @author Qiang Xue * @author Alexander Kochetov * @since 2.0 */ class TimestampBehavior extends AttributeBehavior { /** * @var string the attribute that will receive timestamp value */ public $createdAtAttribute = 'created_at'; /** * @var string the attribute that will receive timestamp value */ public $updatedAtAttribute = 'updated_at'; /** * @var callable|Expression The expression that will be used for generating the timestamp. * This can be either an anonymous function that returns the timestamp value, * or an [[Expression]] object representing a DB expression (e.g. `new Expression('NOW()')`). * If not set, it will use the value of `time()` to set the attributes. */ public $value; /** * @inheritdoc */ public function init() { parent::init(); if (empty($this->attributes)) { $this->attributes = [ BaseActiveRecord::EVENT_BEFORE_INSERT => [$this->createdAtAttribute, $this->updatedAtAttribute], BaseActiveRecord::EVENT_BEFORE_UPDATE => $this->updatedAtAttribute, ]; } } /** * @inheritdoc */ protected function getValue($event) { if ($this->value instanceof Expression) { return $this->value; } else { return $this->value !== null ? call_user_func($this->value, $event) : time(); } } /** * Updates a timestamp attribute to the current timestamp. * * ```php * $model->touch('lastVisit'); * ``` * @param string $attribute the name of the attribute to update. */ public function touch($attribute) { $this->owner->updateAttributes(array_fill_keys((array) $attribute, $this->getValue(null))); } }