用字符串获取php上的gettext(不在回显上)

时间:2018-12-11 07:04:14

标签: php gettext

我是使用gettext对网站进行内部化处理的新手。 做 在php gettext的示例中,它给出了以下内容:

echo _("this is test"); 

如果我想将翻译后的项目保存为字符串,以后再打印,该怎么办?

我尝试做这样的事情

$test = _("this is test");
echo $test;

但是当我运行命令时

xgettext --from-code=UTF-8 -o messages.pot *.php

我什么都没有得到。

0 个答案:

没有答案