1

我是gettext的新手。

这是我的设置: /Apache 2.2 PHP 5.3.6 Windows 7/

我在Apache/htdocs/test/index.php中有以下代码

<?php
    $language = 'de_DE'; 
    $translatefile = 'messages'; 
    setlocale(LC_ALL, $language);
    putenv("LANG=".$language); 
    bindtextdomain($translatefile, 'C:/locale'); 
    textdomain($translatefile); 

    echo gettext("Hello World!");
?>

我使用 PoEdit 在locale/de_DE/LC_MESSAGES/messsages.po & messages.mo下生成必要的翻译我使用的字符集是UTF-8

当我访问http://localhost/test时,结果是 Hello World!什么时候应该是霍尔韦尔特!

作为测试,我打开命令提示符并导航到测试文件夹。然后我输入

php index.php 

控制台中出现的结果是

Hall Welt!

我不确定为什么它不能与 Apache 一起使用。

4

2 回答 2

2

这个问题没有用传统的方式解决。我不得不使用 php-gettext 而不是 gettext(php_gettext.dll) 默认内置在 php 中。

细节:

1) 从这里下载 php-gettext:https ://launchpad.net/php-gettext/+download 2) 在 index.php 所在的文件夹中添加以下文件:-gettext.inc-gettext.php-streams.php 3) 这是新的 index.php

  <?php
    error_reporting(E_ALL | E_STRICT);

    // define constants
    define('PROJECT_DIR', realpath('./'));
    define('LOCALE_DIR', 'C:/locale');
    define('DEFAULT_LOCALE', 'de_DE');

    require_once('gettext.inc');

    $supported_locales = array('en_US', 'sr_CS', 'de_CH');
    $encoding = 'UTF-8';

    $locale = (isset($_GET['lang']))? $_GET['lang'] : DEFAULT_LOCALE;

    //var_dump($locale);die();

    // gettext setup
    T_setlocale(LC_MESSAGES, $locale);
    // Set the text domain as 'messages'
    $domain = 'messages';
    bindtextdomain($domain, LOCALE_DIR);
    // bind_textdomain_codeset is supported only in PHP 4.2.0+
    if (function_exists('bind_textdomain_codeset')) 
      bind_textdomain_codeset($domain, $encoding);
    textdomain($domain);

    echo gettext("Hello World!");
    ?> 

4) 打开你的 php.ini 并注释掉 php_gettext.dll:

  ;extension=php_gettext.dll

访问http://localhost/test,你会看到Hall Welt!

于 2012-07-22T16:54:10.390 回答
0

我今天在 wampserver 2.2、apache 2.2、windows 7、64 位上遇到了同样的问题。我卸载了它并安装了 32 位。有用。

于 2012-12-18T17:01:09.440 回答