Magento中获得设置时区的当前时间

Magento中默认时区为GMT, 不能直接使用time(), date()等方法,否则会出现时间差。
用下面的方法取当前时间(和后台设置的时区一致):

date("Y-m-d", Mage::getModel('core/date')->timestamp(time()));


获得UTC时间
$date = Mage::app()->getLocale()->utcDate($store, $value, true, Varien_Date::DATETIME_INTERNAL_FORMAT);
        $this->setData('date_start', $date->toString(Varien_Date::DATETIME_INTERNAL_FORMAT));

你可能感兴趣的:(PHP)