PHPstring连接
我需要知道它是否可以连接string,如下所示? 如果不是的话,还有什么办法呢?
while ($personCount < 10) { $result+= $personCount . "person "; } echo $result;
它应该出现像1 person 2 person 3
人等。
你不能在串联中使用+
符号,所以有什么select?
只是使用.
用于连接。 而你错过了$personCount
增量!
while ($personCount < 10) { $result .= $personCount . ' people'; $personCount++; } echo $result;
一步(恕我直言)更好
$result .= $personCount . ' people';
while ($personCount < 10) { $result .= ($personCount++)." people "; } echo $result;
这应该会更快。
while ($personCount < 10) { $result .= "{$personCount} people "; $personCount++; } echo $result;
我认为这个代码应该可以正常工作
while ($personCount < 10) { $result = $personCount . "people '; $personCount++; } // do not understand why do you need the (+) with the result. echo $result;