Visa ett inlägg
Oläst 2010-11-11, 13:16 #7
gsocs avatar
gsoc gsoc är inte uppkopplad
Mycket flitig postare
 
Reg.datum: Jun 2007
Inlägg: 568
gsoc gsoc är inte uppkopplad
Mycket flitig postare
gsocs avatar
 
Reg.datum: Jun 2007
Inlägg: 568
Kod:
function translate( $text, $destLang = ‘sv’, $srcLang = ‘en’ ) {
$text = urlencode( $text );
$destLang = urlencode( $destLang );
$srcLang = urlencode( $srcLang );
$trans = @file_get_contents( ”http://ajax.googleapis.com/ajax/services/language/translate?v=1.0&q=$text&langpair=$srcLang|$destLang” );
$json = json_decode( $trans, true );
if( $json['responseStatus'] != ’200′ ) return false; else return $json['responseData']['translatedText'];
}
gsoc är inte uppkopplad   Svara med citatSvara med citat