<?php range(string|int|float $start, string|int|float $end, int|float $step = 1): array
<?php $to = $this->params->int(['to', 'times']); $vars = []; foreach (range($from, $to) as $i) { $vars[] = [ 'value' => $i, ];