I have an array:
array( 4 => \'apple\', 7 => \'orange\', 13 => \'plum\' )
I would like to get the first element of this array. Expect
Try this:
$fruits = array( 4 => 'apple', 7 => 'orange', 13 => 'plum' ); echo reset($fruits)."\n";