0byt3m1n1
Path:
/
home
/
k74ns2xygros
/
www
/
globetech
/
cms
/
emp
/
translate
/
[
Home
]
File: tran.php
<?php function Translate($from_lan, $to_lan, $text) { $json = json_decode(file_get_contents('https://ajax.googleapis.com/ajax/services/language/translate?v=1.0&q=' . urlencode($text) . '&langpair=' . $from_lan . '|' . $to_lan)); $translated_text = $json->responseData->translatedText; return $translated_text; } echo "<br><br> Hindi To English <br>"; echo Translate('hi','en','कानूनी नोटिस: यह गूगल के अनुवादक सेवाओं की एक दुरुपयोग है, आप इस के लिए भुगतान करना होगा.'); echo "<br><br> English To Hindi <br> "; echo Translate('en', 'hi','legal notice: This is an abuse of google translator services , you must pay for this.');