如何在php中将两个字符串组合在一起?

rbpvctlc  于 2021-06-24  发布在  Mysql
关注(0)|答案(17)|浏览(429)

我不知道如何描述我想要的,但我会告诉你:
例如:

$data1 = "the color is";
$data2 = "red";

我应该怎么做(或处理)使$result是 $data1 以及 $data2 ?
期望结果:

$result = "the color is red";
daupos2t

daupos2t16#

没有人提到这一点,但还有其他可能性。我用它来进行大量的sql查询。您可以使用。=运算符:)

$string = "the color is ";
$string .= "red";

echo $string; // gives: the color is red
qvk1mo1f

qvk1mo1f17#

另一种可用的形式是:

<?php
$data1 = "the color is";
$data2 = "red";
$result = "{$data1} {$data2}";

相关问题