0

我试图学习一些更短的在 php 中做事的方法

是否有一种更短的方法可以将数字添加到变量中

在这种情况下,我想缩短的代码是:$num = $num + rand(1000, 100);

例如:

$num = 0;
        $count = 10;
        $i = 0;

        while ($i < $count) {
            $num = $num + rand(1000, 100);
            echo"$num<br/>";
            $i++;
        }
4

2 回答 2

6

您可以使用+=

$num += rand(1000, 100);
于 2013-03-02T18:34:34.780 回答
-1

您说您想学习“在 php 中做事的一些更短的方法”。好吧,有一种更快的方法可以将一个添加到变量中。

// You can use $i+1
$i = 1;
$i = $i + 1

// Or $x++
$x = 1;
$x++;

// Now, if we echo this out we will get the same result from using $i+1 or $x++
echo $i;
echo $x;
于 2013-03-02T18:51:13.123 回答