0

このコードにはまだ問題があります。.mp3 ファイルに変換するには、引数を関数に設定する必要があります。この行を使用すると :$tts->setText($row['raspuns']);何も起こりませんが、書いた場合$tts->setText("Hello World!");は完全に機能します。これにより、tts がテキストを取得するための正しいコードを見つける必要があるという結論に達します。誰でも私を助けてもらえますか?

<html>
    <head>
        <title>
            Bot
        </title>
        <link type="text/css" rel="stylesheet" href="main.css" />
    </head>
    <body>
        <form action="bot.php "method="post">
            <lable>You:<input type="text" name="intrebare"></lable>
            <input type="submit" name="introdu" value="Send">
        </form>
    </body>
</html>
<?php
mysql_connect("localhost", "root", "") or die(mysql_error());
mysql_select_db("robo") or die(mysql_error());

$intrebare=$_POST['intrebare'];
$query = "SELECT * FROM dialog where intrebare = '$intrebare'"; 
$result = mysql_query($query) or die(mysql_error());
$row = $result;
?>

<?php
require "tts.php";
$tts = new TextToSpeech();
$tts->setText($row['raspuns']);
//$tts->setText("Hello World!");
$tts->saveToFile("voice.mp3");
$file='voice.mp3';
?>

<div id="history">
<?php       

    while (true == ($row = mysql_fetch_array($result))) {
    echo "<b>The robot says: </b><br />";
    echo $row['raspuns'];
    echo "<embed src =\"$file\" hidden=\"true\" autostart=\"true\"></embed>";
}
?>
</div>

tts.php ファイルは次のとおりです。

<?php
class TextToSpeech {
    public $mp3data;
    function __construct($text="") {
        $text = trim($text);
        if(!empty($text)) {
            $text = urlencode($text);
            $this->mp3data = file_get_contents("http://translate.google.com/translate_tts?tl=en&q={$text}");
        }
    }

    function setText($text) {
        $text = trim($text);
        if(!empty($text)) {
            $text = urlencode($text);
            $this->mp3data = file_get_contents("http://translate.google.com/translate_tts?tl=en&q={$text}");
            return  $this->mp3data;
        } else { return false; }
    }

    function saveToFile($filename) {
        $filename = trim($filename);
        if(!empty($filename)) {
            return file_put_contents($filename,$this->mp3data);
        } else { return false; }
    }
}
?>
4

1 に答える 1

1

mysql_queryのドキュメントによると、

返されたデータにアクセスするには、返された結果リソースをmysql_fetch_array()、および結果テーブルを処理するための他の関数に渡す必要があります。

だから代わりに

$row = $result;

あなたが持っている必要があります

$row = mysql_fetch_array($result);
于 2012-12-09T12:05:23.540 に答える