<?php $myArray = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o"]; for($i = 0; $i < count($myArray); $i += 5) { array_splice($myArray, $i, 0, 1); } print_r($myArray);
You have javascript disabled. You will not be able to edit any code.