回首页

后一页
前一页
字符串操作符

这个地方仅仅有一个真正的字符串操作符:串联符号“.”。

 

$a = "Hello ";$b = $a . "World!";

// now $b = "Hello World!"

后一页
前一页

回首页