Многоязычный переводчик

April 30, 2008

<?php
function translate($text,$lg) {
$lg = urlencode($lg);
$text = urlencode($text);
$link =
file_get_contents("http://google.com/translate_t?langpair=
$lg&text=$text");
preg_match(’/<div id=result_box dir=\"ltr\">(.*?)<\/div>/’,
$link, $out);
return $out[1];
}

// Пример:
// echo translate("hello")

// Пример c другим языком(С Английского на Немецкий):
// echo translate("hello", "en|de")
?>

Comments »

The URI to TrackBack this entry is: http://intrex.blogsome.com/2008/04/30/p67/trackback/

No comments yet.

RSS feed for comments on this post.

Leave a comment

Line and paragraph breaks automatic, e-mail address never displayed, HTML allowed: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <code> <em> <i> <strike> <strong>



Anti-spam measure: please retype the above text into the box provided.