Source Code:
(back to article)
<?php $colors = array("red", "green", "blue"); array_shift($colors); print_r($colors); ?>
Result:
Report an issue