Source Code:
(back to article)
<?php $numbers = [1, 2, 3, 4, 5, 6]; $removed = array_splice($numbers, 0, 3); print_r($numbers); print_r($removed); ?>
Result:
Report an issue