我想开发一个模块。用户可以在其中输入将在gujarati Lang&它必须存储在数据库中。所以我可以在gujrati中查看这个问题。所有这一切我想在php& mysql.So请帮我一下.. 感谢
答案 0 :(得分:2)
您可以使用Google Translate API进行转换,然后将转换后的文本存储到数据库中。
<?php
$apiKey = '<paste your API key here>';
$url = 'https://www.googleapis.com/language/translate/v2/languages?key=' . $apiKey;
$handle = curl_init($url);
curl_setopt($handle, CURLOPT_RETURNTRANSFER, true); //We want the result to be saved into variable, not printed out
$response = curl_exec($handle);
curl_close($handle);
print_r(json_decode($response, true));
?>