Source Code:
(back to article)
<?php $colors = array("red", "green", "blue", "yellow", "orange"); // We can use the `array_shift` function to remove the first three elements: array_shift($colors); array_shift($colors); array_shift($colors); print_r($colors); /* Array ( [0] => yellow [1] => orange ) */ ?>
Result:
Report an issue