yii2 时间戳 修改格式 使用字符串

public function behaviors()
{
    $behaviors = parent::behaviors();
    $time = [
        'class'      => \yii\behaviors\TimestampBehavior::class,
        'value'      => fn () => date('Y-m-d H:i:s'),
        'attributes' => [
            \yii\db\ActiveRecord::EVENT_BEFORE_INSERT => ['create_time', 'update_time'],
            \yii\db\ActiveRecord::EVENT_BEFORE_UPDATE => ['update_time'],
        ],
    ];
    array_push($behaviors, $time);
    return $behaviors;
}

此处评论已关闭