<?php $array = [1, 2, 3, 4, 5, 6, 7, 8, 9]; $result = []; while ($array) { $result[] = implode(', ', array_splice($array, 0, 4)); } var_export($result);
You have javascript disabled. You will not be able to edit any code.