Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

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));
?>
Source by www.sitepoint.com #
 
PREVIOUS NEXT
Tagged: #google #translate #api #php
ADD COMMENT
Topic
Name
2+4 =