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

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

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

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

手册

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!"

 

 

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:PHP高级技巧全放送_PHPNächster Artikel:PHP4用户手册:函数-count_PHP