由于 Google Translate API 不再免费,我尝试从http://mymemory.translated.net/doc/spec.php获取翻译
例如我的 PHP 页面
header("Cache-Control: no-cache");
header("Pragma: no-cache");
header('Content-type: application/json');
$_POST['value']=="Hello everybody";
// URI to get italian from english
$translate_it=json_decode(file_get_contents("http://mymemory.translated.net/api/get?q=".$_POST['value']."&langpair=en|it"));
我不是对象开发人员,也不知道如何访问数据...
我怎样才能从中只获得“翻译”字段? http://mymemory.translated.net/api/get?q=Hello%20everybody&langpair=en|it