Skip to content

Instantly share code, notes, and snippets.

@willkriski
Created June 15, 2012 12:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save willkriski/2936310 to your computer and use it in GitHub Desktop.
Save willkriski/2936310 to your computer and use it in GitHub Desktop.
Routes requests to Google Translate due to cross domain issues
<?php
header('Content-type: audio/mp3');
$text = urlencode($_GET['q']);
$content= file_get_contents('http://translate.google.com/translate_tts?tl=en&q=' . $text);
echo $content;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment