PHP Range function

Creates an array that contains a range of elements from $start to $end.

Example: if my start value is 0 and the $end value is 70 and my step value is 10 the values of my array elements are: 0, 10, 20, 30 ,40, 50, 60, 70.

read more