PHP中使用“.”来连接两个字符串。示例如下:
<? php $str1 = 'hello'; $str2 = 'world'; echo $str1 . $str2; ?>
以上程序的打印结果为:
helloworld