我不知道如何描述我想要的,但我会告诉你:例如:
$data1 = "the color is"; $data2 = "red";
我应该怎么做(或处理)使$result是 $data1 以及 $data2 ?期望结果:
$data1
$data2
$result = "the color is red";
daupos2t16#
没有人提到这一点,但还有其他可能性。我用它来进行大量的sql查询。您可以使用。=运算符:)
$string = "the color is "; $string .= "red"; echo $string; // gives: the color is red
qvk1mo1f17#
另一种可用的形式是:
<?php $data1 = "the color is"; $data2 = "red"; $result = "{$data1} {$data2}";
17条答案
按热度按时间daupos2t16#
没有人提到这一点,但还有其他可能性。我用它来进行大量的sql查询。您可以使用。=运算符:)
qvk1mo1f17#
另一种可用的形式是: