PHP | range()函数
range()函数是PHP中的一个内置函数,用于创建任何类型的元素数组,例如整数、给定范围内的字母(从低到高),即列表的第一个元素被认为是低元素和最后一个元素被认为是高。
句法:
array range(low, high, step)
参数:此函数接受三个参数,如下所述:
- 低:它将是 range()函数生成的数组中的第一个值。
- high:它将是 range()函数生成的数组中的最后一个值。
- step:在范围内使用的增量时使用,默认值为1。
返回值:它返回一个从低到高的元素数组。
例子:
Input : range(0, 6)
Output : 0, 1, 2, 3, 4, 5, 6
Explanation: Here range() function print 0 to
6 because the parameter of range function is 0
as low and 6 as high. As the parameter step is
not passed, values in the array are incremented
by 1.
Input : range(0, 100, 10)
Output : 0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100
Explanation: Here range() function accepts
parameters as 0, 100, 10 which are values of low,
high, step respectively so it returns an array with
elements starting from 0 to 100 incremented by 10.
下面的程序说明了PHP中的 range()函数:
程序 1 :
输出:
0 1 2 3 4 5 6
方案二:
输出:
0 20 40 60 80 100
程序 3 :
输出:
a b c d e f g h i j
程序 4 :
输出:
p o n m l k j i h g f e d c b a
参考:
PHP 。 PHP