php可以通过点操作符对多个字符串进行连接操作,类似于python中的加号
$str1 = "hello"; $str2 = "75271.com"; $str = $str1 . " " . $str2; echo $str;
输出结果
hello 75271.com
php可以通过点操作符对多个字符串进行连接操作,类似于python中的加号
$str1 = "hello"; $str2 = "75271.com"; $str = $str1 . " " . $str2; echo $str;
输出结果
hello 75271.com