程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> Google翻譯接口(PHP API)

Google翻譯接口(PHP API)

編輯:關於PHP編程

/* 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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved