最佳答案
在PHP中,字符串按如下方式连接在一起:
$foo = "Hello";$foo .= " World";
在这里,$foo
变成了"Hello World"
。
这在Bash中是如何实现的?