<?php $limit = 13; $skip = 2; $keep = 3; $result = []; $array = range(1, 13); while ($array) { array_push( $result, ...array_slice( array_splice($array, 0, $skip + $keep), $skip ) ); } var_export($result);
You have javascript disabled. You will not be able to edit any code.