File size: 625B
<?php
error_reporting(0);
function myurl($url)
{
$ua="Nokia6020/2.0 (04.90) Profile/MIDP-2.0 Cofiguration/CLDC-1.1";
$ch=curl_init();
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_USERAGENT,$ua);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
$exec=curl_exec($ch);
return $exec;
}
function r2e($text)
{
$text=str_replace(' ','+',$text);
$google="http://translate.google.com/m?hl=en&sl=ru&tl=en&ie=UTF-8&prev=_m&q=$text";
$get=myurl($google);
$string=explode('<div dir="ltr" class="t0">',$get);
$string=$string[1];
$string=explode('</div>',$string);
$string=$string[0];
return $string;
}
?>