Post by qianzheng82
我在用 php 写程序时,所有显示的字符串都用了 gettext() 函数,然后用 gettext, msgfmt 生成了 .mo 的中文翻译文件,但浏览器刷新时有时还会随机出现英文,请问这是为什么?
------------
setlocale(LC_ALL, 'cn');
// Specify location of translation tables
//bindtextdomain("myPHPApp", "./locale");
// Choose domain
//textdomain("myPHPApp");
// Print a test message
print gettext("Welcome to My PHP Application");
// Or use the alias _() for gettext()
print _("Have a nice day");
显示函数未定义,这些函数该怎么用啊?
请教 |