关于php gettext

时间:2013-01-27 14:39:45

标签: php linux apache gettext

po文件

msgid "apple"
msgstr "banana"

XX / index.php的

<?php 
    putenv(XX);
    setlocale(LC_ALL, XX);
    bindtextdomain(XX, XX);
    textdomain(XX);
    echo gettext("apple");
?> 

cli模式执行(就像“php XX / index.php”)结果是“香蕉”,正确翻译,但当我用apache web服务器用php运行它时,结果是“apple”。 这让我很困惑。任何人都可以帮忙吗?谢谢!

0 个答案:

没有答案