首页 >后端开发 >php教程 >为什么 PHP 中的字符串连接不起作用,正确的方法是什么?

为什么 PHP 中的字符串连接不起作用,正确的方法是什么?

DDD
DDD原创
2024-11-27 20:41:10680浏览

Why Doesn't ' ' Work for String Concatenation in PHP, and What's the Correct Method?

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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn