我想在一个相互连接的 for 循环中获得 3 个 int 值。我基本上想要的是这样的:
000
001
002
003
010
011
...
323
330
331
我希望变量中的 3 个数字中的每一个都从 0 开始,最大为 3,当它高于 3 时,它会将剩下的数字增加 1
例如
for($i = 0; $i <= $array; $i++){
echo $a . $b . $c . "<br />"; //Output would be the example I showed above
}