Hi all,
I've got a similar problem (but I don't know if it's linked to i18n) :
When I try to display the 29th december 2008 I got the 29th december 200
9.
The code:
PHP Code:
$dayDate = Zend_Date::now();
$dayDate->setYear(2008);
$dayDate->setMonth(12);
$dayDate->setDay(29);
echo $dayDate->toString('dd/MM/YYYY');
result = 29/12/2009
Strange ...
ZF version : 1.5.3