当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP range()用法及代码示例


range()函数是PHP中的内置函数,用于创建任何类型的元素数组,例如整数,给定范围(从低到高)内的字母,即列表的第一个元素被认为是低而最后一个被认为是一样高

用法:

array range(low, high, step)

参数:该函数接受三个参数,如下所述:


  1. low:它是range()函数生成的数组中的第一个值。
  2. high:这将是range()函数生成的数组中的最后一个值。
  3. 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

<?php 
  
// creating array with elements from 0 to 6 
// using range function 
$arr = range(0,6); 
  
// printing elements of array 
foreach ($arr as $a) { 
      
    echo "$a "; 
} 
  
?>

输出:

0 1 2 3 4 5 6

程序2

<?php 
  
// creating array with elements from 0 to 100 
// with difference of 20 between consecutive  
// elements using range function 
$arr = range(0,100,20); 
  
// printing elements of array 
foreach ($arr as $a) { 
      
    echo "$a "; 
} 
  
?>

输出:

0 20 40 60 80 100

程序3

<?php 
  
// creating array with elements from a to j 
// using range function 
$arr = range('a','j'); 
  
// printing elements of array 
foreach ($arr as $a) { 
      
    echo "$a "; 
} 
  
?>

输出:

a b c d e f g h i j

程序4

<?php 
  
// creating array with elements from p to a 
// in reverse order using range function 
$arr = range('p','a'); 
  
// printing elements of array 
foreach ($arr as $a) { 
      
    echo "$a "; 
} 
  
?>

输出:

p o n m l k j i h g f e d c b a

参考:
http://php.net/manual/en/function.range.php



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 PHP | range() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。