$ i = $ i + $ x的最短PHP代码;

时间:2013-03-02 18:33:33

标签: php

我试图在php中学习一些较短的做事方式

是否有更短的方法为变量添加数字

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

例如:

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

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

2 个答案:

答案 0 :(得分:6)

您可以使用+=

$num += rand(1000, 100);

答案 1 :(得分:-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;