php字符串连接

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

?>

输出 ab

 

字符串连接: .=

posted @ 2013-12-08 17:00  无忧之路  阅读(144)  评论(0)    收藏  举报
无忧之路