程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP調用谷歌翻譯

PHP調用谷歌翻譯

編輯:關於PHP編程

<?php 
/*
 * PHP調用谷歌翻譯
 * author:cc
 * date:2012/5/4
 */ 
function translate($text,$language='zh-cn|en'){ 
 if(emptyempty($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(!emptyempty($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('개','kr|zh-cn'); 
?> 


摘自 PainsOnline的專欄

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