Source Code:
(back to article)
<?php $array = array(1, 2, 3, 4, 5); array_splice($array, 0); var_dump($array);
Result:
Report an issue