Answers for "php array_pop reverse"

PHP
1

php array_pop reverse

<?php
$stack = array("orange", "banana", "apple", "raspberry");
$fruit = array_shift($stack); //$fruit = "orange";

?>
Posted by: Guest on May-14-2020

Browse Popular Code Answers by Language