如何用英语转换数据库并在网页上查看印地语数据加载

时间:2016-11-04 04:37:57

标签: php html

我遇到了我的数据库是英语的问题,我想在网站加载时查看印地语数据。

我不想使用已转换语言的语言下拉菜单,我只想查看印地语字体的数据。

1 个答案:

答案 0 :(得分:0)

是的,您可以使用 Google's translate API.

在PHP中执行此操作
<?php
// [START translate_quickstart]
// Includes the autoloader for libraries installed with composer
require __DIR__ . '/vendor/autoload.php';
// Imports the Google Cloud client library
use Google\Cloud\Translate\TranslateClient;
// Your Translate API key
$apiKey = 'YOUR_API_KEY';
// Instantiates a client
$translate = new TranslateClient([
    'key' => $apiKey
]);
// Get your database text to translate
$text = 'Hello, world!';
// The target language - hindi -> hi
$target = 'hi';
// Translates some text into Russian
$translation = $translate->translate($text, [
    'target' => $target
]);
echo 'Text: ' . $text . '
Translation: ' . $translation['text'];
// [END translate_quickstart]
return $translation;

注意:付费API