如何在php for windows中将英文翻译成中文

时间:2016-09-27 13:25:45

标签: php windows internationalization xampp gettext

我想将我的整个php网页从英文翻译成中文,类似于WordPress翻译。有没有更好的方法或合适的库能够在Windows和中文Windows版本上运行?

我尝试过使用gettext PHP国际化,但它在我的Windows上无效。

//messages.po
<?php
$language = "zh_CN";
putenv("LC_ALL=$language");

$domain = "messages";
bindtextdomain($domain, "Local"); 
bind_textdomain_codeset($domain, 'UTF-8');
textdomain($domain);
echo _("HELLO_WORLD");
?>
  • PHP版本5.6.12
  • Windows 8.1单一语言
  • Windows 10 Pro

0 个答案:

没有答案