<?php
// Input:
$_GET['inicio'] = '7';
$_GET['final'] = '45';
$_GET['incremento'] = '4';
// Trata o input:
$inicio = $_GET['inicio'] ?? 0;
$inicio = is_numeric($inicio) ? $inicio : 0;
$final = $_GET['final'] ?? 0;
$final = is_numeric($final) ? $final : 0;
$incremento = $_GET['incremento'] ?? 1;
$incremento = is_numeric($incremento) && $incremento != 0 ? $incremento : 1;
// Faz o mesmo que o `while`:
echo implode(' ', range($inicio, $final, $incremento));
- Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.16 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.30, 8.2.0 - 8.2.25, 8.3.0 - 8.3.13
- 7 11 15 19 23 27 31 35 39 43
preferences:
64.1 ms | 407 KiB | 5 Q