Details
Description
// create a date object using a known date
$date = new Zend_Date('2009-11-14');
// create a 2nd date object using the setDayOfYear method
$date2 = new Zend_Date();
$date2->setDayOfYear(317);
// Results should be equal given that 14th November 2009 is day 317 of the year
// however as you can see the 2nd date object returns 316
return $date->get(Zend_Date::DAY_OF_YEAR) . ' ' . $date2->get(Zend_Date::DAY_OF_YEAR);
upon further investigation I believe user error is most likely issue here, not ZF
Please cancel and ignore