PHP array_unshift()

array_unshift(array, value, ...) function adds elements to the beginning position of an array.

<?PHP
	$a = array(1,2,3);
	array_unshift($a,0);
	print_r($a);
	//Array ( [0] => 0 [1] => 1 [2] => 2 [3] => 3 ) 
	$a = array(1,2,3);
	array_unshift($a,0,9);
	print_r($a);
	//Array ( [0] => 0 [1] => 9 [2] => 1 [3] => 2 [4] => 3 ) 
	$a = array(1,2,3);
	array_unshift($a,0,array(9,10,11));
	print_r($a);
    //Array ( [0] => 0 [1] => Array ( [0] => 9 [1] => 10 [2] => 11 ) [2] => 1 [3] => 2 [4] => 3 ) 	
?>

Adds elements to the beginning of an associative array using array_merge() function.

<?PHP
	$a = array("John"=>"Male","Mary"=>"Female");
	$a=array_merge(array("George"=>"Male"),$a);
	print_r($a);
	//Array ( [George] => Male [John] => Male [Mary] => Female ) 
?>

array_shift(array) function delete an element at the beginning of an array.

<?PHP
	$a = array(1,2,3);
	array_shift($a);
	print_r($a);
    //Array ( [0] => 2 [1] => 3 ) 
?>

array_shift(array) can also delete an element at the beginning of an associative array.

<?PHP
	$a = array("George"=>"Male","John"=>"Male","Mary"=>"Female");
	array_shift($a);
	print_r($a);
	//Array ( [John] => Male [Mary] => Female ) 
?>



:: 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