Remove the last element from an array in PHP

Remove the last element from an array in PHP

In this post we will give you information about Remove the last element from an array in PHP. Hear we will give you detail about Remove the last element from an array in PHPAnd how to use it also give you demo for it if it is necessary.

Learn, how to remove the last element from an array in PHP.

To remove the last element from an array, we can use the built-in array_pop() function in PHP.

Here is an example, that removes the last element popcorn from the following array

<?php$food = array("salad", "cake", "cheese", "popcorn");array_pop($food);print_r($food);?>

Output:

Array(    [0] => salad    [1] => cake    [2] => cheese)

The array_pop() function modifies the original array.

If you want to preserve the original array and still remove the last element, then you can use the array_slice() function by passing 0 , -1 as a second and third arguments.

<?php$food = array("salad", "cake", "cheese", "popcorn");$removedlast = array_slice($food, 0, -1);print_r($removedlast)?>

Output:

Array(    [0] => salad    [1] => cake    [2] => cheese)

The array_slice() function creates the new array instead of modifying the original array.

Hope this code and post will helped you for implement Remove the last element from an array in PHP. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs

For More Info See :: laravel And github

We're accepting well-written guest posts and this is a great opportunity to collaborate : Contact US