Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个日期类型为日期的日期属性。在管理员中,日期格式为 MM/DD/YYYY,但当日期出现在产品页面的前端时,日期格式为 DD/MM/YYYY
任何关于如何让前端与管理员匹配的见解都会很棒。感谢您的帮助。
你总是可以使用日期助手:
$fromDate = '2011-12-11'; echo $formattedDate = Mage::getModel('core/date') ->date('d/m/Y', strtotime($fromDate)) ;
虽然问题可能是由于区域设置更改了默认日期格式。