我的begin_date
属性的日期格式显示为:2015-04-25 00:00:00
我希望它像:25 04 2015
我试过了:
<?php
echo $this->helper('core')->formatDate(getbegin_date(), Mage_Core_Model_Locale::FORMAT_TYPE_SHORT);
?>
但它不起作用。
答案 0 :(得分:1)
以下是格式化时间的方法(在PHP中)。如果您需要更多参考,请查看此页面:Playing with Dates in Magento
$current_time = Mage::getModel('core/date')->timestamp(time());
echo $date = date('d m Y', $current_time);