I want to get the week number of a particular date , using Zend_Date
My local is setted as English(IN) [en_IN], in Opera browser
I am using the following code
$date = new Zend_Date('22 Mar, 2010', null, Zend_Registry::get('Zend_Locale'));
echo $date->get(Zend_Date::WEEK); //output 12, correct
But if we give a sunday , it will not work correctly
for example
$date = new Zend_Date('21 Mar, 2010', null, Zend_Registry::get('Zend_Locale'));
echo $date->get(Zend_Date::WEEK); //output 11, not correct
it should output 12
What is wrong with this?