I have an array:
array( 4 => \'apple\', 7 => \'orange\', 13 => \'plum\' )
I would like to get the first element of this array. Expect
Use:
$first = array_slice($array, 0, 1); $val= $first[0];
By default, array_slice does not preserve keys, so we can safely use zero as the index.
array_slice