1

我只想在我的 PHP 网站中翻译特定的单词。

例如

    Data      Language      Translation
---------------------------------------------
    Hello     select        ___________

当用户从下拉列表中选择语言时,翻译字段应更新为将 Hello 翻译成所选语言。

4

1 回答 1

1

您可以使用gtranslate-api-php,使用起来非常简单。

<?php
      require("GTranslate.php");

      try{
         $gt = new Gtranslate;
         echo "Translating [Hello World] from English to German => ".$gt->english_to_german("hello world")."<br/>";
         echo "Translating [Ciao mondo] Italian to English => ".$gt->it_to_en("Ciao mondo")."<br/>";
      } catch (GTranslateException $ge)
      {
        echo $ge->getMessage();
      }
?>

顺便说一句,当用户将语言选择到包含此代码的 php 文件(如果您不使用框架)时,您应该发出 ajax 请求,然后返回值并填充必填字段。

于 2013-03-08T05:25:31.770 回答