I want to return first 5 items from array. How can I do this?
array_slice returns a slice of an array
array_slice
$sliced_array = array_slice($array, 0, 5)
is the code you want in your case to return the first five elements
1.4m articles
1.4m replys
5 comments
57.0k users