I have been working with Zend_Date. Can anyone tell me if the behaviour below is normal? The returned months seem to be wrong. I have put the output in comments.
Thanks for any help!
$oDate = new Zend_Date();
$oDate->setMonth(1);
$oDate->setDay(15);
$oDate->setYear(2012);
echo $oDate->get(Zend_Date::DATETIME_FULL);//Sunday, January 15, 2012 8:24:59 PM Europe/Madrid
$oDate->setMonth(2);
echo $oDate->get(Zend_Date::DATETIME_FULL);//Thursday, March 15, 2012 8:25:20 PM Europe/Madrid
$oDate->setMonth(3);
echo $oDate->get(Zend_Date::DATETIME_FULL);//Thursday, March 15, 2012 8:25:40 PM Europe/Madrid
$oDate->setMonth(4);
echo $oDate->get(Zend_Date::DATETIME_FULL);//Tuesday, May 15, 2012 8:27:32 PM Europe/Madrid
$oDate->setMonth(5);
echo $oDate->get(Zend_Date::DATETIME_FULL);//Tuesday, May 15, 2012 8:28:05 PM Europe/Madrid
echo $oDate->get();– Jan Westerdiep Jan 31 at 19:46$oDate = new Zend_Date(); $oDate->setMonth(2); $oDate->setDay(15); $oDate->setYear(2012); echo $oDate->getDate();//Mar 15, 2012 12:00:00 AMThis is the output with getDate(). It should be February, shouldn't it? – Rupert Jan 31 at 19:50->set(4, Zend_Date::MONTH);instead? (Else I would go for bug report, if no expert answer shows up here.) – mario Jan 31 at 19:57