是否可以连接字符串,如下所示?如果没有,这样做的替代方法是什么?
while ($personCount < 10) {
$result += $personCount . "person ";
}
echo $result;
它应该看起来像1 person 2 person 3
人等。
您不能+
在连接中使用符号,那么有什么替代方法?
是否可以连接字符串,如下所示?如果没有,这样做的替代方法是什么?
while ($personCount < 10) {
$result += $personCount . "person ";
}
echo $result;
它应该看起来像1 person 2 person 3
人等。
您不能+
在连接中使用符号,那么有什么替代方法?
仅.
用于连接。你错过了$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++;
}
# I do not understand why you need the (+) with the result.
echo $result;
$personCount = 1;
while ($personCount < 10) {
$result = 0;
$result .= $personCount . "person ";
$personCount++;
echo $result;
}