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