【问题标题】:Magento : Change date format for an attributeMagento:更改属性的日期格式
【发布时间】:2015-04-13 10:13:21
【问题描述】:

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); 
?>

但它不起作用。

【问题讨论】:

    标签: magento date attributes format


    【解决方案1】:

    这里是如何格式化时间(在 PHP 中)。如果您需要更多参考,请查看此页面:Playing with Dates in Magento

    $current_time = Mage::getModel('core/date')->timestamp(time()); 
    echo $date = date('d m Y', $current_time);
    

    【讨论】:

    • 感谢您的帮助,但是当我使用您的代码时,我有当前时间,但我需要以良好的格式显示我的日期属性。我尝试了您链接的所有解决方案,但我没有找到解决方案
    • 日期是基本的 PHP 函数,这里是如何使用它们的参考:date reference.. 例如,如果你希望日期和时间都采用“正确的格式”。然后您可以执行以下操作:date('d.m.Y H:i', $current_time);
    猜你喜欢
    • 2017-01-25
    • 2022-08-16
    • 1970-01-01
    • 1970-01-01
    • 2011-06-05
    • 2016-11-22
    相关资源
    最近更新 更多