PHP中两个字符串的连接
有两个字符串运算符。第一个是连接运算符(' . '),它返回其左右参数的连接。第二个是连接赋值运算符(' .= '),它将右侧的参数附加到左侧的参数。
例子 :
Input : string1: Hello
string2 : World!
Output : HelloWorld!
Input : string1: geeksfor
string2: geeks
Output : geeksforgeeks
代码#1:
输出 :
HelloWorld!
代码#2:
输出 :
John Carter!
代码#3:
输出 :
HelloWorld!
PHP是一种专门为 Web 开发而设计的服务器端脚本语言。您可以按照此PHP教程和PHP示例从头开始学习PHP 。