解析:
在PHP中使用点号. 来连接两个字符串。如下面的示例:
.
$str1 = "Hello "; $str2 = "World!"; echo $str1.$str2;
以上代码执行结果:
Hello World!