PHP 字符串连接
连接字符串(如问题中提供的示例)是编码中的常见任务。但是,提供的代码会导致错误,因为“ ”符号不能用于连接。
解决方案是使用“.”。改为运算符。此外,代码在循环中缺少变量 $personCount 的增量。
更正后的代码如下:
while ($personCount < 10) { $result .= $personCount . ' people'; // Use . for concatenation $personCount++; // Increment $personCount } echo $result;
此代码将正确连接字符串并递增 $ personCount 变量,产生所需的输出:“1 person 2 person 3 person...”
以上是为什么 PHP 中的字符串连接不起作用,正确的方法是什么?的详细内容。更多信息请关注PHP中文网其他相关文章!