Facebook Twitter Instagram
    TecAdmin
    • Home
    • FeedBack
    • Submit Article
    • About Us
    Facebook Twitter Instagram
    TecAdmin
    You are at:Home»General Articles»Removing the First Element from an Array in PHP

    Removing the First Element from an Array in PHP

    By RahulMay 30, 20232 Mins Read

    In PHP, arrays are data structures that allow us to store multiple values under a single variable name. We can add, remove, or change array elements using built-in PHP functions. This article will focus on how to remove the first element from an array in PHP, specifically using the `array_shift()` function.

    Introduction to array_shift()

    The `array_shift()` function in PHP removes the first element or value from an array and returns that value. After the function has executed, the array will have one less element and the keys of the array will be modified to start from zero if the keys are numeric.

    Here’s the basic syntax of `array_shift()`:

    1
    $value = array_shift($array);

    In this syntax:

    • `$array` is the input array. This is the array that you want to remove the first element from.
    • `$value` is the first element of the $array that was removed.

    Example of `array_shift()`

    Consider the following array:

    1
    $fruits = array("apple", "banana", "cherry", "date", "elderberry");

    To remove the first element (“apple”), we use the `array_shift()` function:

    1
    $removed_fruit = array_shift($fruits);

    After this line of code is executed, the `$fruits` array will be:

    1
    array("banana", "cherry", "date", "elderberry");

    And the `$removed_fruit` will contain the value “apple”.

    Working with Associative Arrays

    The `array_shift()` function also works with associative arrays (arrays with string keys). However, as we mentioned earlier, `array_shift()` re-indexes the keys of the array to start from zero if the keys are numeric. So, you may lose the original keys of your associative array if they are numeric. Let’s illustrate with an example:

    1
    2
    $students = array("1" => "John", "2" => "Jane", "3" => "Doe");
    $removed_student = array_shift($students);

    In this case, after executing `array_shift()`, the `$students` array will be:

    1
    array("1" => "Jane", "2" => "Doe");

    And the `$removed_student` will contain the value “John”. The numeric keys have been re-indexed starting from 1.

    However, if the keys are strings, the `array_shift()` function will preserve them:

    1
    2
    $students = array("a" => "John", "b" => "Jane", "c" => "Doe");
    $removed_student = array_shift($students);

    After this, the $students array will be:

    1
    array("b" => "Jane", "c" => "Doe");

    And the `$removed_student` will contain the value “John”. The string keys have been preserved.

    Conclusion

    The `array_shift()` function is a powerful tool in PHP for manipulating arrays. It allows us to quickly and easily remove the first element from an array, whether the array is indexed or associative. However, it’s important to be aware of how `array_shift()` interacts with numeric keys, so as not to unintentionally re-index your array.

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email WhatsApp

    Related Posts

    How to Install and Use Podman on Ubuntu 22.04 & 20.04

    Setting Up Laravel with Docker and Docker-compose

    Setting Up Development Environments with PHP and Docker

    Add A Comment

    Leave A Reply Cancel Reply

    Advertisement
    Recent Posts
    • How to Create and Use Custom Python Module
    • How to Install and Use Podman on Ubuntu 22.04 & 20.04
    • Setting Up Laravel with Docker and Docker-compose
    • Setting Up Development Environments with PHP and Docker
    • Using Composer with Different PHP Versions in Linux
    Facebook Twitter Instagram Pinterest
    © 2023 Tecadmin.net. All Rights Reserved | Terms  | Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.