<?php
$stack = array("orange", "banana", "apple", "pear");
$fruit = array_pop($stack);
print_r($stack);
echo "<br/>";
echo $fruit;
?>
