PHP array_splice()

array_splice() deletes or replaces the specified elements of an array after the specified offset. If only an offset is specified, all elements after offset will be deleted.

<?PHP
	$arr=array(1,2,3,4,5,6,7,8,9);
    $arr2=array_splice($arr,3);
	foreach($arr2 as $element) echo "$element, ";  //4, 5, 6, 7, 8, 9, 
	foreach($arr as $element) echo "$element, ";  //1, 2, 3, 
?>

If the purpose is not delete all elements after the offset, but only several elements after it, then the number of elements can be used as a parameter.

<?PHP
	$arr=array(1,2,3,4,5,6,7,8,9);
    $arr2=array_splice($arr,3,4);
	foreach($arr2 as $element) echo "$element, ";  //4, 5, 6, 7, 
	foreach($arr as $element) echo "$element, ";  //1, 2, 3, 8, 9 
?>

If the offset is negative, then all elements before the offset will be deleted.

<?PHP
	$arr=array(1,2,3,4,5,6,7,8,9);
    $arr2=array_splice($arr,-3);
	foreach($arr2 as $element) echo "$element, ";  //7, 8, 9, 
	foreach($arr as $element) echo "$element, ";  //1, 2, 3, 4, 5, 6, 
?>

Similarly the number of elements can be specified when the offset is negative.

<?PHP
	$arr=array(1,2,3,4,5,6,7,8,9);
    $arr2=array_splice($arr,-3, 2);
	foreach($arr2 as $element) echo "$element, ";  //7, 8, 
	foreach($arr as $element) echo "$element, ";  //1, 2, 3, 4, 5, 6, 9, 
?>



:: PHP Tutorials Home ::
PHP String Functions
 • concatenation • echo
 • ereg • ereg_replace
 • explode • htmlspecialchars
 • preg_match • preg_replace
 • preg_split • print,sprintf
 • regular expr. • str_replace
 • strcmp • strpos
 • strrev • strrpos
 • strtr • substr
 • substr_replace
PHP Array Functions
 • array_diff • array_flip
 • array_intersect • array_key_exists
 • array_keys • array_merge
 • array_pop • array_push
 • array_rand • array_search
 • array_splice • array_unshift
 • array_values • asort & arsort
 • count • in_array
 • ksort • shuffle
 • sort
PHP Data Types
 • array • associative array
 • date & time • number
 • class, object • regular expression
 • string • variables
PHP Loop & Conditions
 • continue & break • for loop
 • foreach • if else
 • not equal • while
PHP File System Functions
 • copy • delete, unlink
 • dirname • download url
 • file_exists • is_file
 • mkdir • read file
 • scandir • write file
PHP Popular Topics
 • ajax • clone
 • comments • constants
 • cookie • database
 • defined • die
 • form validation • gd, draw images
 • global variables • header url
 • heredoc • mail
 • pass by reference • print
 • regular expr. • sessions
 • threads • xml parse
PHP Math Functions
 • abs • cos
 • exp • floor & ceil
 • fmod • log
 • max & min • pow
 • round • sin
 • sqrt • tan
endmemo.com © 2024  | Terms of Use | Privacy | Home