Hello,
You can find a list of date constants at: framework.zend.com/manual/en/zend.date.constants.html#zend.date.constants.list
Something like this would work for you:
$myDate = new Zend_Date(strtotime('2007-07-13'));
$myDate->toString("dd.MM.YYYY");
Cheers
|