我在 PHP 中遇到 gettext 问题;我有两台服务器,一台是本地的(我在其中开发)在 Windows 中(使用 vs.php)和工作查找,另一台在 Amazon EC2(Ubuntu 12.04 更新)中,这是生产服务器,在此服务器中相同的代码不要'没有找到。
这是我的代码:
我用这个初始化gettext。
function initialize_i18n($locale) {
$locales_root = "./librerias/noAuto/locale";
putenv('LANG='.$locale);
putenv("LC_ALL=" . $locale);
setlocale(LC_ALL,$locale);
$domains = glob($locales_root.'/'.$locale.'/LC_MESSAGES/messages*.mo');
if (count ($domains) > 0)
{
$current = basename($domains[0],'.mo');
$timestamp = preg_replace('{messages-}i','',$current);
bindtextdomain($current,$locales_root);
bind_textdomain_codeset( $current, "UTF-8" );
textdomain($current);
if ($locale == "en_US")
{
if( _("Modificar") === "Modify" ) {
$system->setDebug( "Translated correctly");
} else {
$system->setDebug( "Gettext don't working");
}
}
}
}
initialize_i18n("en_US");
我项目中的所有文件都以 UTF-8(西班牙语)编码,并且 .mo 和 .po 是用 poedit 生成的。
我尝试重新加载 apache 服务但没有用。
任何想法?