How can I set a date to NULL in Yii?

后端 未结 3 826
生来不讨喜
生来不讨喜 2020-12-15 07:22

I have a date column that usually takes values as dd.MM.yyyy. Its validation rule in the model\'s rules() is this:

array(\'start, e         


        
3条回答
  •  借酒劲吻你
    2020-12-15 07:27

    in model rules():

    array('start, end', 'date', 'format' => 'dd.MM.yyyy'),
    array('start, end', 'default', 'setOnEmpty' => true, 'value' => null),
    

    also,

    if (empty($csv_data)) {
      $user->start = null;
    } ...
    

    should do the trick too.

提交回复
热议问题