Returning first x items from array

后端 未结 5 650
小蘑菇
小蘑菇 2020-12-01 03:14

I want to return first 5 items from array. How can I do this?

5条回答
  •  孤城傲影
    2020-12-01 03:44

    array_slice returns a slice of an array

    $sliced_array = array_slice($array, 0, 5)
    

    is the code you want in your case to return the first five elements

提交回复
热议问题