Jamie Redmond
Jamie Redmond

Reputation: 731

Shorten Array in PHP?

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?

Upvotes: 7

Views: 6359

Answers (2)

rubayeet
rubayeet

Reputation: 9400

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

Upvotes: 32

tamasd
tamasd

Reputation: 5913

http://php.net/manual/en/function.array-slice.php

Usage:

$shortarray = array_slice($longarray, 0, 30);

Upvotes: 10

Related Questions