我的 magento 网站显示日期存在问题。在数据库表中,日期以值“2013-06-12 14:14:57”存储,当日期显示在管理部分时,它变为“2013 年 6 月 12 日晚上 10:14:57”,它增加了 8 小时存储在数据库中的原始值。
下面是我正在使用的代码
$this->addColumn('created_at', array(
'header' => Mage::helper('sales')->__('Purchased On'),
'index' => 'created_at',
'type' => 'datetime',
'width' => '100px',
));
谁能告诉我为什么会这样?