Yii在framework / i18n / data /%lang%.php文件中有很多翻译。 例如,german translations
我想在我的Yii项目中使用Fullcalendar。 要翻译此日历,我必须为当前语言提供一个monthNames / dayNames数组。 Fullcalendar monthNames Documentation
Yii生成这样的数组的最佳方法是什么:
['January', 'February', 'March', 'April', 'May', 'June', 'July',
'August', 'September', 'October', 'November', 'December']
答案 0 :(得分:6)
您可以使用json_encode
(或Yii native CJSON::encode()
)和Yii提供的数据生成:
json_encode(
include('path/to/yii/framework/i18n/data/de_de.php')['monthNames']['wide']
);
(此语法需要PHP array dereferencing}
从Yii中的当前区域设置:
json_encode(
Yii::app()->locale->getMonthNames()
)
请参阅http://www.yiiframework.com/doc/api/1.1/CLocale#getMonthNames-detail