Verification start date must be less than the end date in Yii

My table has (among other columns) a start date and an end date. I need to check that the start date is less than the end date in Yii.

I confirm this?

+4
source share
1 answer

Use CCompareValidator to validate the rules () method of your model:

array( 'event_end_date', 'compare', 'compareAttribute'=>'event_start_date', 'operator'=>'>', 'allowEmpty'=>false , 'message'=>'{attribute} must be greater than "{compareValue}".' ), 
+18
source

Source: https://habr.com/ru/post/1339788/


All Articles