Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an array:

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

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

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

Any ideas?

share|improve this question
What do you mean, can't be done by reference? – cjk Dec 17 '09 at 12:34
Function should not works using &$array as params. – hsz Dec 17 '09 at 12:41
1  
I suspect that what you "really" mean by "can't be done by reference", is that your array is being returned dynamically from a database, and you don't want to pass the array into a variable before taking the first element from it. If I'm right, then the vast majority of all the solutions provided to you below (including the accepted answer), are insufficient. – cartbeforehorse Oct 23 '12 at 20:16

20 Answers

up vote 169 down vote accepted
array_shift(array_values($array));
share|improve this answer
18  
+1 for the clever workaround to prevent modifying the original array with array_values() – ChrisR Sep 14 '11 at 12:05
14  
I get this: <b>Strict Standards</b>: Only variables should be passed by reference. Nice workaround btw – simone Mar 21 '12 at 13:55
57  
Isn't this a little overkill? What if the array contains several thousands of elements? Is it justified to create a whole new array just to get its first element? list() and reset() are much nicer solutions to my opinion. – Martin Dimitrov Jun 12 '12 at 11:25
9  
I agree. Total overkill and extraordinary resource heavy compared to one line which resets and returns the current value: reset($array); – zmonteca Sep 13 '12 at 18:42
26  
-1 As the above commenters have said. It's baffling to me that this has 101 upvotes. – Lightness Races in Orbit Oct 8 '12 at 10:47
show 8 more comments

As Mike pointed out (the easiest possible way):

$arr = array( 4 => 'apple', 7 => 'orange', 13 => 'plum' )
echo reset($arr); //echoes "apple"

This is what the documentation say:

mixed reset ( array &$array );

reset() rewinds array's internal pointer to the first element and returns the value of the first array element, or FALSE if the array is empty.

form the docs

share|improve this answer
great.. thanks. – mamdouh alramadan May 1 at 21:21
$first_value = reset($array); // First Element's Value
$first_key = key($array); // First Element's Key

Hope this helps. :)

share|improve this answer
I haven't actually tested it, but it seems this approach would be the most efficient. – mason81 Aug 27 '12 at 15:23
Only problem is the question asked for the value, not the key. Thus current($array) should be used instead of of key($array) – zmonteca Sep 13 '12 at 18:40
3  
@zmonteca $first_value = reset($array); here you get the value, reset() function rewinds arrays internal pointer and returns first element. – S3Mi Oct 3 '12 at 13:16
the best answer! was looking for key() equivalence to get the first value. This helps! – Alain Tiemblo Oct 19 '12 at 10:06
$arr = $array = array( 9 => 'apple', 7 => 'orange', 13 => 'plum' );
reset($arr);
echo current($arr); // echoes 'apple'

if you don't want to loose the current pointer position, just create an alias for the array.

share|improve this answer
1  
didn't get it, what do you mean? It works fine whether the key of the first is bigger than the other ones. – yoda Dec 17 '09 at 12:38
20  
+1 FYI reset() already returns the first element, so there is no need to use current() -- echo reset($arr) should suffice – Mike Sep 21 '11 at 14:58

You can get Nth element with a language construct "list":

// 1st item
list($firstItem) = $yourArray;

// 1st item from an array that is returned from function
list($firstItem) = functionThatReturnsArray();

// 2nd item
list( , $secondItem) = $yourArray;

with array_keys function you can do the same for keys:

list($firstKey) = array_keys($yourArray);
list(, $secondKey) = array_keys($yourArray);
share|improve this answer
1  
+1, To my opinion, list is the best option – Martin Dimitrov Jun 12 '12 at 7:56
2  
This is exactly what I do: list($first_value) = $my_array; In my opinion, the very best option. It does not have the issues from the other answers presented here: no "overkill" because it does not copy or the array or create a new one. No "references": the array is not modified. No "reset": no changes to the array internal pointer... – J. Bruni Aug 30 '12 at 12:44
2  
Very elegant solution, but throws an E_NOTICE when the array is empty. – Tgr Jan 11 at 17:22
@Tgr that can be easily overcome by checking if count($array) > 0. – Mike Feb 23 at 23:03
@Mike yes, but then it is not so elegant anymore :) – Tgr Feb 24 at 23:36
show 3 more comments

Suppose:

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

Just use:

$array[key($array)]

to get first element or

key($array)

to get first key.

Or you can unlink the first if you want to remove it.

share|improve this answer
1  
Wht not simply use current then? – Marco Demaio Mar 5 at 14:02

kludgy answer:

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

function get_first ($foo) {
    foreach ($foo as $k=>$v){
     return $v;
    }
}

print get_first($foo);
share|improve this answer
At least you're honest - it's kludgy! But, it works, and I've used it in the past until learning the list() technique above. – cale_b Mar 21 at 15:23

simply do:

array_shift(array_slice($array,0,1));
share|improve this answer

I would do echo current($array) .

share|improve this answer
1  
it cannot be done with passing by reference – hsz Aug 10 '12 at 10:43

I think using array_values would be your best bet here. You could return the value at index zero from the result of that function to get 'apple'.

share|improve this answer
$arr = array( 4 => 'apple', 7 => 'orange', 13 => 'plum' );
foreach($arr as $first) break;
echo $first;
share|improve this answer

Two solutions for you.

Solution 1 - Just use the key. You have not said, that you cann't use it.

<?php
// get first element of this array. 
$array = array( 4 => 'apple', 7 => 'orange', 13 => 'plum' );

// gets the first element by key
$result = $array[4];

//Expected result: string apple
assert('$result === "apple" /* Expected result: string apple. */');
?>

Solution 2 - array_flip() + key()

<?php
// get first element of this array. Expected result: string apple
$array = array( 4 => 'apple', 7 => 'orange', 13 => 'plum' );

// turn values to keys
$array = array_flip($array);

// you might, thrown an reset in
// just to make sure that the array pointer is at first element
// also reset return the first element
// reset($myArray);

// return first key 
$firstKey = key($array); 

assert('$firstKey === "apple" /* Expected result: string apple. */');
?>
share|improve this answer

Some arrays don't work with functions like list, reset or current. Maybe they're "faux" arrays - partially implementing ArrayIterator, for example.

If you want to pull the first value regardless of the array, you can short-circuit an iterator:

foreach($array_with_unknown_keys as $value) break;

Your value will then be available in $value and the loop will break after the first iteration. This is more efficient than copying a potentially large array to a function like array_unshift(array_values($arr)).

You can grab the key this way too:

foreach($array_with_unknown_keys as $key=>$value) break;

If you're calling this from a function, simply return early:

function grab_first($arr) {
    foreach($arr as $value) return $value;
}
share|improve this answer

PHP 5.4+:

array_values($array)[0];
share|improve this answer
Thanks for saving my servers memory! – Sanket May 29 at 10:59

what about this:

$first = array_slice($array, 0, 1);  
$val= $first[0];

by default, array_slice does not preserve keys, so we can safely use zero as index

share|improve this answer

This is a little late to the game, but I was presented with a problem where my array contained array elements as children inside it, and thus I couldn't just get a string representation of the first array element. By using PHP's current() function, I managed this:

<?php
    $original = array(4 => array('one', 'two'), 7 => array('three', 'four'));
    reset($original);  // to reset the internal array pointer...
    $first_element = current($original);  // get the current element...
?>

Thanks to all the current solutions helped me get to this answer, I hope this helps someone sometime!

share|improve this answer

echo current(array( 4 => 'apple', 7 => 'orange', 13 => 'plum' )); // apple

Use php function Current

share|improve this answer
$array=array( 4 => 'apple', 7 => 'orange', 13 => 'plum' );

$firstValue = each($array)[1];

This is much more efficient than array_values() because the each() function does not copy the entire array.

For more info see http://www.php.net/manual/en/function.each.php

share|improve this answer

small change to what Sarfraz posted

$array = array(1, 2, 3, 4, 5);
$output = array_slice($array, 0, 1);
print_r ($output);
share|improve this answer
1  
-1 Returns an array not an element. – g . Aug 15 '11 at 13:51
$foo = array( 4 => 'apple', 7 => 'orange', 13 => 'plum' );

function firstElement($foo,$m='k') {
    foreach ($foo as $k=>$v){
     return $$m;
    }
}

$firstKey=firstElement($foo);
$firstVal=firstElement($foo,'v');
share|improve this answer
this makes no sense – Omar Jackman Apr 22 at 14:50

protected by hsz Aug 9 '12 at 12:32

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.