Author -  Sai gowtham

Remove the last element from an array in PHP

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.

Css Tutorials & Demos

How rotate an image continuously in CSS

In this demo, we are going to learn about how to rotate an image continuously using the css animations.

How to create a Instagram login Page

In this demo, i will show you how to create a instagram login page using html and css.

How to create a pulse animation in CSS

In this demo, i will show you how to create a pulse animation using css.

Creating a snowfall animation using css and JavaScript

In this demo, i will show you how to create a snow fall animation using css and JavaScript.

Top Udemy Courses

JavaScript - The Complete Guide 2023 (Beginner + Advanced)
JavaScript - The Complete Guide 2023 (Beginner + Advanced)
116,648 students enrolled
52 hours of video content
$14.99 FROM UDEMY
React - The Complete Guide (incl Hooks, React Router, Redux)
React - The Complete Guide (incl Hooks, React Router, Redux)
631,582 students enrolled
49 hours of video content
$24.99 FROM UDEMY
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
203,937 students enrolled
31.5 hours of video content
$14.99 FROM UDEMY