※ 本文轉寄自 tomin.bbs@tomin.twbbs.org 時間: 2011-06-09 16:07:59
標題 proxy
時間 2011/05/18 Wed 17:58:09
$voice = file_get_contents(
'http://translate.google.com/translate_tts?tl=en&q=hello');
echo $voice;
<?php
// Set your return content type
header('Content-type: audio/ogg,mp3');
// Website url to open
$daurl = $_GET['url'];
// Get that website's content
$handle = fopen($daurl, "r");
// If there is something, read and return
if ($handle) {
while (!feof($handle)) {
$buffer = fgets($handle, 4096);
echo $buffer;
}
fclose($handle);
}
?>
--
--
看板 coding
作者 標題 proxy
時間 2011/05/18 Wed 17:58:09
$voice = file_get_contents(
'http://translate.google.com/translate_tts?tl=en&q=hello');
echo $voice;
<?php
// Set your return content type
header('Content-type: audio/ogg,mp3');
// Website url to open
$daurl = $_GET['url'];
// Get that website's content
$handle = fopen($daurl, "r");
// If there is something, read and return
if ($handle) {
while (!feof($handle)) {
$buffer = fgets($handle, 4096);
echo $buffer;
}
fclose($handle);
}
?>
--
◤◥ Origin: Loess Plateau˙黃土高原 tomin.twbbs.org
◣◢ Author: tomin 從 tomin.mdorm.ntnu.edu.tw 發表
--
※ 看板: tomin 文章推薦值: 0 目前人氣: 0 累積人氣: 26
回列表(←)
分享