Yii Framework 2.0 Rules Date Validator

后端 未结 5 2160
情书的邮戳
情书的邮戳 2021-02-19 03:50

I am using Yii Framework 2.0. I have a form with a text input field which is meant for a date. I have read the Yii Framework 2.0 about the Class yii\\validators\\Validat

5条回答
  •  孤街浪徒
    2021-02-19 04:30

    Not 100% sure how it is in Yii2, but going out from Yii1 that had to look like this...

    array('org_datetime', 'date', 'format'=>'yyyy-M-d H:m:s'),
    

    (source: http://www.yiiframework.com/wiki/56/#hh8)

    ...I'd say i'd have to look something like this in Yii2:

    ['shopping_date', 'date', 'format' => 'yyyy-M-d H:m:s'],
    

提交回复
热议问题