我试图学习一些更短的在 php 中做事的方法
是否有一种更短的方法可以将数字添加到变量中
在这种情况下,我想缩短的代码是:$num = $num + rand(1000, 100);
例如:
$num = 0;
$count = 10;
$i = 0;
while ($i < $count) {
$num = $num + rand(1000, 100);
echo"$num<br/>";
$i++;
}