|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
开发相册系统过程中就有过这样的问题,因为没有交流好,出现重复工作问题,因为文档没有详细的说明而经常临时问对方。 /* Google翻译PHP接口
* 官成文 2009-03-28
* http://blog.csdn.net/aprin/
* 注重:假如翻译文本为UTF-8编码,则要删去mb_convert_encoding函数
*/
class Google_API_translator {
public $url = “http://translate.谷歌.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’, ‘langpair=zh-CNen’, ‘ie=UTF-8′,’text=’.urlencode(mb_convert_encoding($text, ‘UTF-8′, ‘GB2312′)));
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, implode(‘&’, $fields));
$html = curl_exec($ch);
if(curl_errno($ch)) $html = “”;
curl_close ($ch);
}
return $html;
}
}
//just for test
$g = new Google_API_translator();
$g->setText(“我爱php100!”);
$g->translate();
echo $g->out;
?>
<P style="TEXT-INDENT: 2em">
即使你理解不了PHP,但是也必须先跟它混个脸熟,看,一遍遍的看,看的同时一边琢磨,一边按照它所教的打代码,即使你搞不清楚那些代码到底是干嘛的,但是起码你应该找找感觉。 |
|