Possible Duplicate:
PHP: fill an array with numbers可能重复:PHP:用数字填充数组
I'd like code a PHP function that creates an array with natural numbers from 1 to a given number and I have not a clue of how to do this.
我想编写一个PHP函数来创建一个自然数从1到给定数字的数组,我不知道如何做到这一点。
e.g : if I give the function the natural number 3 then the array should be 1,2,3 ; if I give the function the integer 2 1,2 ; if 5 1,2,3,4,5
例如:如果我给函数自然数3那么数组应该是1,2,3;如果我给函数整数2 1,2;如果5 1,2,3,4,5
3 个解决方案
#1
6
There is already a function that will do this: range
.
已经有一个功能可以做到这一点:范围。
range(1, 3); // array(1, 2, 3)
range(2, 5); // array(2, 3, 4, 5)
#2
2
Use range()
:
使用范围():
$array = range(1, 3);
#3
1
Just look at this http://ua.php.net/manual/en/function.range.php
请看这个http://ua.php.net/manual/en/function.range.php
#1
6
There is already a function that will do this: range
.
已经有一个功能可以做到这一点:范围。
range(1, 3); // array(1, 2, 3)
range(2, 5); // array(2, 3, 4, 5)
#2
2
Use range()
:
使用范围():
$array = range(1, 3);
#3
1
Just look at this http://ua.php.net/manual/en/function.range.php
请看这个http://ua.php.net/manual/en/function.range.php