“Google Translate API PHP” Respostas de código

Google Translate API PHP

<?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));
?>
Alive Ant

API do Google para tradução de idiomas em PHP

1
2
$result = $translate->detectLanguage('Bonjour le monde!');
echo $result['languageCode']; // output is 'fr'
Perfect Pigeon

Respostas semelhantes a “Google Translate API PHP”

Perguntas semelhantes a “Google Translate API PHP”

Mais respostas relacionadas para “Google Translate API PHP” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código