1

我的 Magento 1.6.2 是用法语配置的。由于我已经移动了我的 Magento 安装,一个模块,使用语言环境配置变量来显示星期和月份,以英语而不是法语显示日期和月份。

该模块的开发人员说它正在这里检索日期和月份:

<?php
class CJM_CustomStockStatus_Helper_Data extends Mage_Core_Helper_Abstract
{
    public function getHolidays()
    {
        $holidays =     explode(',',Mage::getStoreConfig('custom_stock/shipoptions/holidays', Mage::app()-    >getStore()->getId()));
        $holidays = array_filter(array_map('trim', $holidays));
        $theDates =     explode(',',Mage::getStoreConfig('custom_stock/shipoptions/movingholidays', Mage::app()-    >getStore()->getId()));
        $theDates = array_filter(array_map('trim', $theDates));
        $year = date('o', Mage::getModel('core/date')->timestamp(time()));
        $allDates = array();
        $formattedDates = array();
        ...

我不明白为什么自从我移动服务器后这个模块以英文显示内容。

4

1 回答 1

0

使用setlocale(LC_ALL, 'fr_FR');并查看是否可以解决问题。

于 2012-09-28T22:45:21.733 回答