PHP Array Prepend


 

PHP Array Prepend

PHP Array Prepend: In this tutorial you will come to know about how to prepend or add elements at the beginning of an array, in addition this tutorial has many examples of PHP array prepend technique.

PHP Array Prepend: In this tutorial you will come to know about how to prepend or add elements at the beginning of an array, in addition this tutorial has many examples of PHP array prepend technique.

PHP Array Prepend

In this PHP Array tutorial we will come to know about how to add elements at the beginning of an array. To add elements at the beginning we will use array_unshift() function.

General Format

 int array_unshift( $array, mixed $variable1 [, $variable2 [,...]])

Parameters

array: Input array

var: The prepended variable

Return Value

Returns the new number of elements in the array

array_ unshift() prepends or adds the elements at the beginning of an array, the list of elements add at the beginning as a whole. The index position or the numeric key values will be modified to  zero.

Example 1:

<?php

$array=array("diwali","dushera","chirstmas");

echo("<b>The original array is:</b><br/>");

print_r($array);array_unshift($array,"ganesh puja");

echo("<br/><b>After prepending an element at the beginning:</b><br/>");

print_r($array);

?>

Output:

The original array is:
Array ( [0] => diwali [1] => dushera [2] => chirstmas )
After prepending an element at the beginning:
Array ( [0] => ganesh puja [1] => diwali [2] => dushera [3] => chirstmas )

Example 2:

<?php

$array=array("a"=>"apple","b"=>"ball","c"=>"cat");

echo("<b>The original array is:</b><br/>");

print_r($array);

array_unshift($array,"dog");

0

echo("<b>After prepending an element at the beginning:</b><br/>");

print_r($array);

?>

1

Output:

The original array is:
Array ( [a] => apple [b] => ball [c] => cat )
After prepending an element at the beginning:
Array ( [0] => dog [a] => apple [b] => ball [c] => cat )

2

Example 3:

If we print the array_unshift(), then output will be the number of new elements present in the array.

<?php

3

$array=array("a"=>"apple","b"=>"ball","c"=>"cat");

4

echo (array_unshift($array,"Dog"));

?>

5

Output:

4

Example 4:

6

<?php

$a=array(0=>"Delhi",1=>"West Bengal");

7

array_unshift($a,"Bihar");

print_r($a);

?>

8

Output:

Array ( [0] => Bihar [1] => Delhi [2] => West Bengal )

9

Ads