I want to shorten an array so it only contains 30 elements. If for example I have an array of 100 elements is it possible to take it and chop of (as to speak) 70 of those elements?
Use array_slice
to extract the range of elements you need.
$short_array = array_slice($my_big_array, 0, 30)
$short_array
will have first 30 elements of $my_big_array
http://php.net/manual/en/function.array-slice.php
Usage:
$shortarray = array_slice($longarray, 0, 30);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With