php字符串连接

<?php
$s = "a";
$s .= "b";
echo $s;

?>

输出 ab

字符串连接: .=

原文地址:https://www.cnblogs.com/wuyou/p/3463985.html