程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> php使用百度翻譯api示例分享

php使用百度翻譯api示例分享

編輯:PHP綜合

百度翻譯API的PHP代碼,測試可以實現,不過英譯中可能需要轉換編碼。
復制代碼 代碼如下:
<?php
function language($value,$from="auto",$to="auto")
{
  $value_code=urlencode($value);
  #首先對要翻譯的文字進行 urlencode 處理
  $appid="YourApiKey";
  #您注冊的API Key
  $languageurl = "http://openapi.baidu.com/public/2.0/bmt/translate?client_id=" . $appid ."&q=" .$value_code. "&from=".$from."&to=".$to;
  #生成翻譯API的URL GET地址
  $text=json_decode(language_text($languageurl));
  $text = $text->trans_result;
  return $text[0]->dst;
}
function language_text($url)  #獲取目標URL所打印的內容
{
  if(!function_exists('file_get_contents')) {
   $file_contents = file_get_contents($url);
  } else {
  $ch = curl_init();
  $timeout = 5;
  curl_setopt ($ch, CURLOPT_URL, $url);
  curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
  curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
  $file_contents = curl_exec($ch);
  curl_close($ch);
  }
   return $file_contents;
}
  echo language('中國');
?>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved