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