在我的 application.ini
resources.locale.default = "en_EN"
在我的 Bootrstrap.php
protected function _initLocaleRegistry()
{
$locale = new Zend_Locale('en_EN');
Zend_Locale::setDefault('en_EN');
Zend_Registry::set('Zend_Locale', $locale);
}
但是如果在我的简单视图中插入此代码:
/**@var $locale Zend_Locale **/
$locale = Zend_Registry::get('Zend_Locale');
echo $locale->getLanguage();
输出是:它
怎么可能?它关了?
谢谢