gettext似乎无法正常工作

时间:2016-07-13 15:11:51

标签: php gettext

我在c:// xampp上使用xampp并试图实现gettext,但它并不是真的。在php.ini中激活了功能,并在function_exists中进行了测试 我的文件夹结构是:

  • 的htdocs

    • 的FeedReader

      • PHP位于此处
      • 区域设置

        • de_AT
          • LC_MESSAGES
            • de_AT.mo
            • de_AT.po

PHP:

putenv("LANG=de_AT");
setlocale(LC_ALL, "de_AT");
bindtextdomain("de_AT", "locale");
textdomain("de_AT");

echo gettext("test");

它始终打印"测试"而不是翻译,我认为bindtexdomain中存在路由问题。我尝试了不同的东西,如" ../ locale"但那没用。

0 个答案:

没有答案