我在c:// xampp上使用xampp并试图实现gettext,但它并不是真的。在php.ini中激活了功能,并在function_exists中进行了测试 我的文件夹结构是:
的htdocs
的FeedReader
区域设置
PHP:
putenv("LANG=de_AT");
setlocale(LC_ALL, "de_AT");
bindtextdomain("de_AT", "locale");
textdomain("de_AT");
echo gettext("test");
它始终打印"测试"而不是翻译,我认为bindtexdomain中存在路由问题。我尝试了不同的东西,如" ../ locale"但那没用。