我的表格(包括其他栏目)包括开始日期和结束日期。我需要验证开始日期是否小于Yii中的结束日期。
我验证了吗?
答案 0 :(得分:18)
在模型的rules()方法中使用CCompareValidator comparison validation:
array(
'event_end_date',
'compare',
'compareAttribute'=>'event_start_date',
'operator'=>'>',
'allowEmpty'=>false ,
'message'=>'{attribute} must be greater than "{compareValue}".'
),