function range($start, $end, int|float $step = 1) array
-------------------------------------------------------
Create an array containing a range of elements.
Parameters:
mixed--$start--First value of the sequence.
mixed--$end--The sequence is ended upon reaching the end value.
float|int--$step--[optional]--If a step value is given, it will be used as the increment between elements in the sequence.
Step should be given as a positive number. If not specified, step will default to 1.
Returns: an array of elements from start to end, inclusive.
Example :
=========
foreach ( range( 0, 60, 11 ) as $numbers ) {
if ( $numbers > 0 ) {
echo $numbers;
echo PHP_EOL;
}
}