vote up 0 vote down star

I'm validating user entered date string in YYYY-MM-DD format using Zend_Validate::is($value,'Date').

this call causes this hierarchy:

Zend_Validate::is()
Zend_Validate_Date->isValid()
Zend_Date::isDate()
Zend_Locale_Format::getDate()
Zend_Locale_Format::_parseDate()

and then fials with this exception:

Zend_Locale_Exception: Unable to parse date '2009-09-08' using 'MMM d, y' (M <> y) in /usr/share/php/Zend/Locale/Format.php on line 1001

I'm using en_US as application locale. how can I configure Zend_Validate accepts my '2009-09-08' format? Is it possible to change the locale format of date?

flag

73% accept rate

1 Answer

vote up 1 vote down check

Try that:

$validator = new Zend_Validate_Date('YYYY-MM-DD');
if($validator->isValid($value))
    // yay
link|flag
thanks a lot. I've never used individual Zend_Validate_X classes before. this is more customizable. – farzad Sep 8 at 8:33
2  
You should use 'yyyy-MM-dd' though... YYYY is "ISO Year" (which is subtly different near the beggining of the year) and "DD" day of year not day of month. framework.zend.com/manual/en/… – gnarf Sep 8 at 9:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.