亚洲最大午夜福利视频,香港三日本三级少妇三级66,久久久久一区二区三区国产,日本福利视频中文字幕

中山php|最優(yōu)網(wǎng)絡(luò)中山做網(wǎng)站 中山php建站

最優(yōu)良人

2012/07/14 at 15:41

php利用谷歌實(shí)現(xiàn)自動(dòng)在線翻譯

php利用谷歌實(shí)現(xiàn)自動(dòng)翻譯,以下是兩種實(shí)現(xiàn)的方式,php文檔用utf8就不會(huì)出現(xiàn)亂碼問(wèn)題

第一種利用curl:

function translate($text,$language='zh-cn|en'){
if(empty($text))return false;
@set_time_limit(0);
$html = "";
$ch=curl_init("http://google.com/translate_t?langpair=".urlencode($language)."&text=".urlencode($text));
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_HEADER, 0);
curl_setopt($ch,CURLOPT_FOLLOWLOCATION,1);
$html=curl_exec($ch);
if(curl_errno($ch))$html = "";
curl_close($ch);
if(!empty($html)){
$x=explode("</span></span></div></div>",$html);
$x=explode("onmouseout=\"this.style.backgroundColor='#fff'\">",$x[0]);
return $x[1];
}else{
return false;
}
}
echo translate('去');
第二種:利用get方式
function googleTran($text){
if(empty($text)) return "";
//反間碟
$wf=@file_get_contents('http://translate.google.cn/translate_t?sl=zh-CN&tl=en&text='.$text.'#');
if (false===$wf||empty($wf)){
return false;
}

//截取相關(guān)信息
$return = "";

$star="style.backgroundColor='\#fff'\">";

$end="</span></span></div>";
$p = "#{$star}(.*){$end}#iU";//i表示忽略大小寫(xiě),U禁止貪婪匹配
if(preg_match_all($p,$wf,$rs))
{ print_r($rs);
return $rs[1][0];}

}

echo googleTran('去');

-
桃园县| 毕节市| 海林市| 彭阳县| 潜山县| 连城县| 阿拉尔市| 扬中市| 天全县| 衡阳市| 东光县| 北川| 鄂州市| 盐津县| 鄂尔多斯市| 丘北县| 阳新县| 关岭| 长岭县| 定日县| 丰宁| 崇仁县| 兰西县| 永福县| 壤塘县| 资溪县| 汕尾市| 陈巴尔虎旗| 商都县| 甘德县| 丰都县| 尼勒克县| 黄陵县| 万载县| 长沙县| 永福县| 修文县| 道孚县| 自治县| 西畴县| 漠河县|