欢迎使用CSDN-markdown编辑器

//接受post
$field_name = $this->getRequest()->getPost('field_name');

// api获取json数据    $json=file_get_contents('http://openapi.baidu.com/public/2.0/bmt/translateclient_id=CmAjRUuTppSUCb8hYGyzhMnb&q='.$field_name.'&from=zh&to=en');

// json 转php数组     
$arr=json_decode(stripslashes($json),true);
echo $eng=strtolower(str_replace(' ', '_', $arr['trans_result'][0]['dst']));

你可能感兴趣的:(php)