Source Code:
(back to article)
<?php $array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; $limitedArray = array_slice($array, 0, 5); print_r($limitedArray);
Result:
Report an issue