I hav开发者_C百科e a date of birth field and want to add a validator so that no one enters a value less than 1900. Does zend have a validator than can be used for this? I see alnum
but I don't think it's enough because it doesn't set a minimum.
Yes, it is greaterThan
.............
What about Zend_Validate_GreaterThan
?
Even if it's said that dates are not supported... Just use 1900 as an integer ;-)
Your better off using the between validator, and specifying between 1900 and our present year.
$validator = new Zend_Validate_Between(1900, date('Y'));
精彩评论