验证开始日期应小于Yii中的结束日期

sid*_*rth 4 php validation date yii

我的表(以及其他列)包含开始日期和结束日期.我需要验证开始日期是否小于Yii中的结束日期.

我验证了吗?

ayu*_*ush 18

使用CCompareValidator在模型的rules()方法中进行比较验证:

array(
  'event_end_date',
  'compare',
  'compareAttribute'=>'event_start_date',
  'operator'=>'>', 
  'allowEmpty'=>false , 
  'message'=>'{attribute} must be greater than "{compareValue}".'
),
Run Code Online (Sandbox Code Playgroud)