PHP: 字符串运算符 - PHP中文手册
2019-09-06 阅读 : 次
有两个字符串(string)运算符。第一个是连接运算符(“.”),它返回其左右参数连接后的字符串。第二个是连接赋值运算符(“.=”),它将右边参数附加到左边的参数之后。更多信息见赋值运算符。
<?php
$a = "Hello ";
$b = $a . "World!"; // now $b contains "Hello World!"
$a = "Hello ";
$a .= "World!"; // now $a contains "Hello World!"
?>
参见字符串类型和字符串函数章节。
本文地址:https://www.helloaliyun.com/tutorial/236.html