Hey :). I'm traying to get all the year months using Zend_Date and then translate those names with Zend_Locale, I have this:
for ( $intMonthCounter = 1; $intMonthCounter <= 12; $intMonthCounter++ )
{
$objDate = new Zend_Date( $intMonthNumber, Zend_Date::MONTH,
$this->objLocale );
}
So how to get the month name, like 'December', 'November' but using Zend_Locale
too ? I mean, is possible to get a month name using Zend_Locale for the current
Locale set, like es_ES ?
Thx for any help.
