在PHP中連接兩個字符串可以使用.
操作符或者concat()
函數。示例如下:
使用.
操作符:
$str1 = "Hello";
$str2 = "World";
$result = $str1 . " " . $str2;
echo $result; // 輸出:Hello World
使用concat()
函數:
$str1 = "Hello";
$str2 = "World";
$result = concat($str1, " ", $str2);
echo $result; // 輸出:Hello World