1.สร้างตารางแล้วเพิ่มฟิลด์ created_at และ updated_at
2.สร้างโมเดล โดยใช้ Gii generator
3. เพิ่ม code ในโมเดล แล้วกด Save ดังนี้
use yii\behaviors\TimestampBehavior; use yii\db\Expression; public function behaviors() { return [ 'timestamp' => [ 'class' => TimestampBehavior::className(), 'createdAtAttribute' => 'created_at', 'updatedAtAttribute' => 'updated_at', 'value' => new Expression('NOW()'), ], ];
4. เมื่อมีการใช้คำสั่ง $model->save(); หรือ $model->update(); โปรแกรมจะใส่ค่าเวลาให้อัตโนมัติในฟิลด์ created_at และ updated_at ในรูปแบบของ date('Y-m-d H:i:s')
หรือใช้ method Before save
before save
namespace app\models; use Yii; use yii\db\ActiveRecord; class Info extends ActiveRecord { // Add other model properties here (for example, name, description, etc.) /** * This method will be called before saving a new or updating a record. * @param bool $insert whether this is an insert operation. * @return bool whether the record should be saved. */ public function beforeSave($insert) { if (parent::beforeSave($insert)) { // Automatically set the created_at timestamp before saving if ($insert) { $this->created_at = $this->created_at ?: time(); // Or use Yii::$app->formatter->asDate('now') for formatted date } // For updated_at field if needed: if (!$insert) { $this->updated_at = time(); } return true; } return false; } // Add other functions for model validation, rules, etc. }