1,链接运算符(“.”) 它返回两个操作数链接后的字符串 2,链接赋值预算符(“.=”) 它将右边操作数附加到左边操作数之后   eg. <?php $a=”Hello”;echo $a.” world!”; echo “<br>”; echo $a;...