how to pop from an array php code example
Example 1: php remove last element array
$stack = array("yellow", "red", "green", "orange", "purple");
// delete the last element of an array
$removed = array_pop($stack);
print_r($stack);
Example 2: php array_pop reverse
<?php
$stack = array("orange", "banana", "apple", "raspberry");
$fruit = array_shift($stack); //$fruit = "orange";
?>