Friday, October 24, 2025
HomeLanguagesPHP array_shift() Function

PHP array_shift() Function

This inbuilt function of PHP removes the first element from an array and returns the value of the removed element. After the removal of the first element, the key of the remaining elements is modified and again re-numbered from the start, only if the keys are numerical. In other words, this function basically shifts an element off from the beginning in an array.

Syntax:

array_shift($array)

Parameters: The function takes only one argument, $array which refers to the original input array which needs to be shifted.

Return Value: As already mentioned, the function returns the value of the shifted element from the array, otherwise NULL if the array is empty.

Examples:

Input : $array = ("ram"=>2, "aakash"=>4, "saran"=>5, "mohan"=>100)
Output : 2

Input : $array = (45, 5, 1, 22, 22, 10, 10);
Output :45

In this program, we will see how the function works in key_value pair array.




<?php
// PHP function to illustrate the use of array_shift()
function Shifting($array)
{
    print_r(array_shift($array));
    echo "\n";
    print_r($array);
}
$array = array("ram"=>2, "aakash"=>4, "saran"=>5, "mohan"=>100);
Shifting($array);
?>


Output:

2
Array
(
    [aakash] => 4
    [saran] => 5
    [mohan] => 100
)

Now let’s see how the function takes care of the default key.




<?php
// PHP function to illustrate the use of array_shift()
function Shifting($array)
{
    print_r(array_shift($array));
    echo "\n";
    print_r($array);
}
$array = array(45, 5, 1, 22, 22, 10, 10);
Shifting($array);
?>


Output:

45
Array
(
    [0] => 5
    [1] => 1
    [2] => 22
    [3] => 22
    [4] => 10
    [5] => 10
)

Reference:
http://php.net/manual/en/function.array-shift.php

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS