Get first key in a (possibly) associative array? Get first key in a (possibly) associative array? php php

Get first key in a (possibly) associative array?


2019 Update

Starting from PHP 7.3, there is a new built in function called array_key_first() which will retrieve the first key from the given array without resetting the internal pointer. Check out the documentation for more info.


You can use reset and key:

reset($array);$first_key = key($array);

It's essentially the same as your initial code, but with a little less overhead, and it's more obvious what is happening.

Just remember to call reset, or you may get any of the keys in the array. You can also use end instead of reset to get the last key.

If you wanted the key to get the first value, reset actually returns it:

$first_value = reset($array);

There is one special case to watch out for though (so check the length of the array first):

$arr1 = array(false);$arr2 = array();var_dump(reset($arr1) === reset($arr2)); // bool(true)


array_keys returns an array of keys. Take the first entry. Alternatively, you could call reset on the array, and subsequently key. The latter approach is probably slightly faster (Thoug I didn't test it), but it has the side effect of resetting the internal pointer.


Interestingly enough, the foreach loop is actually the most efficient way of doing this.

Since the OP specifically asked about efficiency, it should be pointed out that all the current answers are in fact much less efficient than a foreach.

I did a benchmark on this with php 5.4, and the reset/key pointer method (accepted answer) seems to be about 7 times slower than a foreach. Other approaches manipulating the entire array (array_keys, array_flip) are obviously even slower than that and become much worse when working with a large array.

Foreach is not inefficient at all, feel free to use it!

Edit 2015-03-03:

Benchmark scripts have been requested, I don't have the original ones but made some new tests instead. This time I found the foreach only about twice as fast as reset/key. I used a 100-key array and ran each method a million times to get some noticeable difference, here's code of the simple benchmark:

$array = [];for($i=0; $i < 100; $i++)    $array["key$i"] = $i;for($i=0, $start = microtime(true); $i < 1000000; $i++) {    foreach ($array as $firstKey => $firstValue) {        break;    }}echo "foreach to get first key and value: " . (microtime(true) - $start) . " seconds <br />";for($i=0, $start = microtime(true); $i < 1000000; $i++) {    $firstValue = reset($array);    $firstKey = key($array);}echo "reset+key to get first key and value: " . (microtime(true) - $start) . " seconds <br />";for($i=0, $start = microtime(true); $i < 1000000; $i++) {    reset($array);    $firstKey = key($array);}echo "reset+key to get first key: " . (microtime(true) - $start) . " seconds <br />";for($i=0, $start = microtime(true); $i < 1000000; $i++) {    $firstKey = array_keys($array)[0];}echo "array_keys to get first key: " . (microtime(true) - $start) . " seconds <br />";

On my php 5.5 this outputs:

foreach to get first key and value: 0.15501809120178 seconds reset+key to get first key and value: 0.29375791549683 seconds reset+key to get first key: 0.26421809196472 seconds array_keys to get first key: 10.059751987457 seconds

reset+key http://3v4l.org/b4DrN/perf#tabs
foreach http://3v4l.org/gRoGD/perf#tabs