Array ( [university] => 57 [iit] => 57 [jee] => 44 [application] => 28 [study] => 26 [college] => 23 [exam] => 19 [colleges] => 19 [view] => 19 [amp] => 18 )
How can I get an array with the first 5 elements?
Use array_slice() function:
array_slice()
$newArray = array_slice($originalArray, 0, 5, true);
2.1m questions
2.1m answers
60 comments
57.0k users