如何使用Google翻译api仅翻译特定单词

时间:2013-03-08 05:18:42

标签: transactions google-translate google-translator-toolkit

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

例如

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

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

1 个答案:

答案 0 :(得分: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请求。