是否可以逆转串联/?串。将其变成单个(更改的)变量

时间:2019-02-18 09:43:25

标签: php variables mysqli reverse string-concatenation

我使用以下公式拆分了该字符串($ messageText):

list($msgat, $message) = explode("!", "$messageText", 2);

从数据库中选择一行:

与此:

$sql = "SELECT verse FROM ".$datatable." WHERE book LIKE '%".$message."'";

我需要想出一种方法:(在回显页面上有效)

 echo " " . $row["book"].  " " . $row["verse"]. "<br>";

东西回到一个字符串中:我一直在尝试这样的东西。

$answer =  " . $row["verse"]. "

因此,我可以在其他地方使用原始但已更改的变量。

我尝试了各种方法,试图制定解决方案...

$answer =   $row["verse"] ;

等等等等……我很困惑……大概在我之前,我找不到它。

1 个答案:

答案 0 :(得分:0)

$answer = " " . $row["book"]. " " . $row["verse"]; //this will store value into single variable answer
echo $answer; // use this if you want to display the result on the page.

如果不向我们显示错误,这肯定会起作用,以便我们可以解决它。