经测试代码如下:
/**
* 生成一个等差数组
*
* @param
* @arrange (512.笔记) jb51.cc
**/
function array_range($from,$to,$step=1){
$array = array();
for ($x=$from; $x <= $to; $x += $step){
$array[] = $x;
}
return $array;
}
print_r(array_range(0,20,5));
/*
returns:
Array
(
[0] => 0
[1] => 5
[2] => 10
[3] => 15
[4] => 20
)
*/
/*** 代码来自编程之家 jb51.cc(jb51.cc) ***/
原文链接:https://www.f2er.com/php/528948.html