Mega Code Archive

 
Categories / Php / Data Type
 

Array_splice() function replaces the designated elements specified by the offset and the optional length input parameters w

//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: <? $pasta = array ("1", "2", "3","4","5","6","7"); $pasta = array_splice($pasta, 5); print_r($pasta); ?>