我的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',
));
谁能告诉我为什么会这样?