所以更好的例子(很难给这个问题一个标题)
想象一下我在 php 中有变量,比如
$number1 = 10;
$number2 = 30;
$number3 = 23;
.. 等等..
我只想做一个算术平均值但不喜欢
($number1 + $number2 +$number3)/3 因为打字太多(不止3个数字)
但使用类似的东西
$temp=0;
for ($i=1;$i<50;$i++){
$temp=$temp+$number."$i"; <- this is what I don't know how to define..
}
和类似的,如何回显数字的所有值,例如
for ($i=1;$i<50;$i++){
echo $number.$i; <- but this is not working..
}
我希望我描述得很好,谢谢你的帮助!