- Output for 8.0.1 - 8.0.28, 8.1.0 - 8.1.17, 8.2.0 - 8.2.4
- 18
<?php
function subdivisor(){
$last = array(18, 10, 24, 10);
$i = 0;
return function () use (&$i, &$last) {
if ($i >= count($last)) {
$i = 2;
}
return $last[$i++];
};
}
echo subdivisor()() . PHP_EOL;