Q:

How to remove the last element from an array in PHP

0

How to remove the last element from an array in PHP

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Use the PHP array_pop() function

You can use the PHP array_pop() function to remove an element or value from the end of an array. The array_pop() function also returns the last value of array. However, if the array is empty (or the variable is not an array), the returned value will be NULL.

Let's check out an example to understand how this function basically works:

<?php
$sports = array("Baseball", "Cricket", "Football", "Shooting");
 
// Deleting last array item
$removed = array_pop($sports);
print_r($sports);
echo "<br>";
var_dump($removed);
?>

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

PHP  and MySQL Frequently Asked Questions

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
How to remove the first element from an array in P... >>
<< How to check if a key exists in an array in PHP...