我有几个问题:
我知道什么是gettext.我已经阅读了几个帖子,他们提到了xgettext,并且好奇,两者之间有什么区别.
如何在Windows上安装xgettext?
最后,有没有人有一个关于如何安装库PHP-gettext http://savannah.nongnu.org/projects/php-gettext/的教程(这通常不是PHP附带的)我已经在一篇文章中阅读过,但我不知道如何使它工作视窗.事情是,有时候在进行更改时,需要重新启动Apache以使用PHP附带的gettext来查看新数据(但是使用库不需要重新启动它),所以我想使用库进行开发.谢谢!
关于这个问题:
原文链接:https://www.f2er.com/php/132068.htmlI know what gettext is. I’ve read a few posts where they mentioned xgettext and was curIoUs as to what is the difference between the two.
简而言之,gettext()是一个函数,xgettext是一个用于从源代码中提取消息的实用程序.
长久以来,SO answer到Complete C++ i18n gettext() “hello world” example显示为C源代码文件hellogt.cxx的一部分:
gettext("hello,world!")
gettext()函数传递一个文本字符串,该文本字符串用作运行时使用的消息的索引.它返回在代码中或在调用程序时指定的语言的指定消息.
然后它显示:
xgettext --package-name hellogt --package-version 1.2 --default-domain hellogt --output hellogt.pot hellogt.cxx
这是在构建时使用的实用程序,用于检查传递给gettext()的文本字符串的源代码文件hellogt.cxx.这些被提取并用于创建便携式对象模板文件hellogt.pot.