我需要将网络服务响应从英语翻译成其他语言,如西班牙语、法语等。在这里我获取 mysql 数据作为我的英语网络服务响应,所以在这里我需要将其转换为特定语言而不使用 google-翻译者。你能给我你的宝贵建议吗?
问问题
1116 次
1 回答
0
把你的 API ID 代替 YoutApiIDHere:
<?php
echo translate('Hello World', 'en', 'fr');
function translate($text, $from, $to) {
$data = file_get_contents('http://api.bing.net/json.aspx?AppId=YoutApiIDHere&Sources=Translation&Version=2.2&Translation.SourceLanguage=' . $from . '&Translation.TargetLanguage=' . $to . '&Query=' . urlencode($text));
$translated = json_decode($data);
if (sizeof($translated) > 0) {
if (isset($translated->SearchResponse->Translation->Results[0]->TranslatedTerm)) {
return $translated->SearchResponse->Translation->Results[0]->TranslatedTerm;
} else {
return false;
}
} else {
return false;
}
}
?>
于 2012-11-01T12:32:16.693 回答