"type="-6ren">
gpt4 book ai didi

php - 如何将多字字符串作为变量传递给php中的url

转载 作者:行者123 更新时间:2023-11-29 13:03:11 25 4
gpt4 key购买 nike

我正在制作一本语音词典。这是我的代码。它工作正常,没有错误,但只是一个小问题。靠近最后的那一行是我遇到问题的地方。

http://tts-api.com/tts.mp3?q=$z";?>"type="audio/mp3"/>

$x 和 $y 变量包含一个单词..因此它们可以轻松转换为语音而无需编码,并且我的代码对它们来说工作得很好。但是当我写存储含义的 $y 时,语音输出不存在,因为含义包含必须首先编码的多单词字符串(但我不知道如何对其进行编码)。

请告诉我必须做哪些更改才能将含义部分从文本转换为语音。

我尝试过http://tts-api.com/tts.mp3?q=.urencode($y)"; ?>"type="audio/mp3"/>

但是没有成功。请帮忙帮助

<html>
<head>
<title>Word meanings</title>
<?php
mysql_connect("localhost", "root", "radhika");
mysql_select_db("dictionary");
if(isset($_POST['Submit1']))
{

$req=$_REQUEST['word'];
$strSQL = "SELECT * FROM dict WHERE word='$req'";
$rs = mysql_query($strSQL);
while($row = mysql_fetch_array($rs))
{
$x=$row["word"];
$y=$row["meaning"];
$z=$row["synonym"];
echo "<b>Word</b>: " . $x ."<br/>" ;
echo "<b>Meaning</b>: " . $y ."<br/>" ;
echo "<b>Synonym</b>: " . $z ."<br/>" ;
}
}
mysql_close();
?>

</head>
<body>
<form name="form1" action="lastry.php" method="POST">
<input type="text" name="word" value="<?php echo isset($_POST['word'])?$_POST['word']:''?>"x-webkit-speech/>
<Input Type ="Submit" Name ="Submit1" Value ="submit">
</form>
<?php if($_POST)
{
?>

<audio controls="controls" autoplay="autoplay">
<source src="<?php echo "http://tts-api.com/tts.mp3?q=$z";?>" type="audio/mp3" />
</audio>
<?php }?>
</body>
</html>

最佳答案

我建议首先尝试 URLencode 函数并让我们知道结果:

例如

urlencode($z)

代替任何可能包含空格/特殊字符的变量。

关于php - 如何将多字字符串作为变量传递给php中的url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23062332/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com