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:

<?
$pasta = array ("1", "2", "3","4","5","6","7");

$pasta = array_splice($pasta, 5);
print_r($pasta);
?>
  
  








Related examples in the same category

1.Inserting New Values to an Array: array array_splice(array $original, int $offset, int $length, array $new)
2.array_splice
3.Inserting New Values at an Arbitrary Point in an Indexed Array
4.array remove
5.Remove all elements from positions 3 to (n 3):
6.Remove a portion of the array and replace it with something else
7.Remove the fifth and sixth elements from the array:
8.Replace the third and fourth elements with new elements: