Hello. In Zend Framework I want to find a number of week day.
echo Zend_Date::WEEKDAY_DIGIT;
But this returns e
. Today is Wednesday. And I want to return 3 (or 2 if Monday is 0). How can I do it? I know how do it with DateTime
class. But I need Zend_Date.
Thank you very much.