使用Magento转换SQL时间戳以使用PHP格式

时间:2013-10-25 15:31:31

标签: php sql magento

假设我的实体表包含created_at列。 在调用实体创建它的时间时,我会做类似的事情:

$entity = Mage::getModel('namespace/entity')->load(1);
//and if I want the time it was created at I would do
$created = $entity->getCreatedAt();

问题是,这会返回一个丑陋的时间戳,在许多情况下对前端用户来说并不是很有用。 示例时间戳:2013-10-25 14:00:28

为时间戳提供格式以使用户可读的最佳方式是什么。

1 个答案:

答案 0 :(得分:0)

这就是我可以格式化日期的方式:

$output_date = date('d-m-Y', Mage::getModel('core/date')->timestamp($entity->getCreatedAt()));