我正在尝试转换我的网站,问题是我无法让gettext()
工作这是我的代码:
$lang = 'esp';
putenv('LC_ALL='.$lang);
setlocale(LC_ALL, "esp");
bindtextdomain($lang, realpath('./locale'));
bind_textdomain_codeset($lang, 'UTF-8');
textdomain($lang);
echo _("Multilingual Web Applications with twig and php");
我试图看看每个函数返回的内容并且它们似乎都运行得很好但是我仍然无法使gettext函数工作 这是我的输出:
使用twig
和php
由于