在php中将英语内容转换为古吉拉特语

时间:2014-07-22 06:46:38

标签: php mysql

我想开发一个模块。用户可以在其中输入将在gujarati Lang&它必须存储在数据库中。所以我可以在gujrati中查看这个问题。所有这一切我想在php& mysql.So请帮我一下.. 感谢

1 个答案:

答案 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));
?>