translate('Welcome to your ZFBlog Administration');?>
today;?>
Zend_Date::getIso : '.$date->getIso();
// what timezone do we have ?
echo '
Zend_Date::getTimezone : '. $date->getTimezone();
echo '
Change Timezone to Europe/Paris';
// set another timezone
$date->setTimezone('Europe/Paris');
// what timezone do we now have ?
echo '
Zend_Date::getTimezone : '. $date->getTimezone();
// see the changed date object
echo '
Zend_Date::getIso : '.$date->getIso();
?>