Get the first element of an array
Asked 07 September, 2021
Viewed 2K times
  • 53
Votes

I have an array:

array( 4 => 'apple', 7 => 'orange', 13 => 'plum' )

I would like to get the first element of this array. Expected result: string apple

One requirement: it cannot be done with passing by reference, so array_shift is not a good solution.

How can I do this?

30 Answer