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