array_splice() function replaces the designated elements specified by the offset and the optional length input parameters with the elements in the optional array replacement_array. : array_splice « Data Structure « PHP
array_splice() function replaces the designated elements specified by the offset and the optional length input parameters with the elements in the optional array replacement_array.
//Its syntax is: array_splice(array input_array, int offset, int [length], array[replacement_array]);
//Remove all elements from the fifth element to the end of the array: