php gettext无法在Mac Os x上安装 - 翻译

时间:2013-10-15 22:38:35

标签: php macos gettext

我在翻译时遇到问题 我用这个教程安装php-get text:

https://gist.github.com/mbillard/1647940

但是当我尝试做到:

php -m

它没有出现。

此外,我的翻译不起作用..

这是我的.php:     

define('PROJECT_DIR', realpath('./'));
define('LOCALE_DIR', PROJECT_DIR .'/locale');
define('DEFAULT_LOCALE', 'fr_FR');

require_once('./application/librairies/gettext/gettext.inc'); 
$supported_locales = array('en_US', 'fr_FR', 'es_ES');
$encoding = 'UTF-8';
$locale = (isset($_GET['lang']))? $_GET['lang'] : DEFAULT_LOCALE;

putenv("LANGUAGE=$locale");
putenv("LANG=$locale");

T_setlocale(LC_MESSAGES, $locale);
$domain = "trad";
bindtextdomain($domain, LOCALE_DIR);
if (function_exists('bind_textdomain_codeset')) 
  bind_textdomain_codeset($domain, $encoding);
textdomain($domain);
?>
有人可以帮帮我吗? 我看到很多这方面的链接,我不能选择好的东西..

0 个答案:

没有答案