有两个字符串运算符。第一个是连接运算符 ('.'),它返回连接右边和左边后生成的新字符串。第二个是自连接运算符('.='),它是在自己的右边加上一个字符串而成的新字符串。更多信"/> 有两个字符串运算符。第一个是连接运算符 ('.'),它返回连接右边和左边后生成的新字符串。第二个是自连接运算符('.='),它是在自己的右边加上一个字符串而成的新字符串。更多信">

Home >Backend Development >PHP Tutorial >PHP4用户手册:运算符-字符串运算符_PHP

PHP4用户手册:运算符-字符串运算符_PHP

WBOY
WBOYOriginal
2016-06-01 12:39:021118browse

手册

TABLE border=0 cellPadding=0 cellSpacing=0 height="100%" width="100%">


有两个字符串运算符。第一个是连接运算符 ('.'),它返回连接右边和左边后生成的新字符串。第二个是自连接运算符('.='),它是在自己的右边加上一个字符串而成的新字符串。更多信息参见 Assignment Operators 。

 

 

$a = "Hello ";
$b = $a . "World!"; // 现在,$b 成了 "Hello World!"

$a = "Hello ";
$a .= "World!";     // 现在,$a 成了 "Hello World!"

 

 

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn