Google翻譯介面(PHP API)_PHP教程

來源:互聯網
上載者:User

/* Google翻譯PHP介面

* 官成文 2009-03-28

* http://blog.csdn.net/aprin/

* 注意:如果翻譯文本為UTF-8編碼,則要刪去mb_convert_encoding函數

*/

class Google_API_translator {

public $url = “http://translate.google.com/translate_t”;

public $text = “”;//翻譯文本

public $out = “”; //翻譯輸出

function setText($text){

$this->text = $text;

}

function translate() {

$this->out = “”;

$gphtml = $this->postPage($this->url, $this->text);

//提取翻譯結果

$out = substr($gphtml, strpos($gphtml, “

“));

$out = substr($out, 29);

$out = substr($out, 0, strpos($out, “

));

$this->out = $out;

return $this->out;

}

function postPage($url, $text) {

$html =”;

if($url != “” && $text != “”) {

$ch = curl_init($url);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

curl_setopt($ch, CURLOPT_HEADER, 1);

curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);

curl_setopt($ch, CURLOPT_TIMEOUT, 15);

/*

*hl – 介面語言,此處無用。

*langpair – src lang to dest lang

*ie – urlencode的編碼方式?

*text – 要翻譯的文本

*/

$fields = array(‘hl=zh-CN&rs

http://www.bkjia.com/PHPjc/478828.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/478828.htmlTechArticle/* Google翻譯PHP介面 * 官成文 2009-03-28 * http://blog.csdn.net/aprin/ * 注意:如果翻譯文本為UTF-8編碼,則要刪去mb_convert_encoding函數 */ class Google_AP...

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.