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

Ok,

I know all about array_pop(), but that deletes the last element. What's the best way to get the last element of an array without deleting it?

EDIT: Here's a bonus:

$array = array('a' => 'a', 'b' => 'b', 'c' => 'c');

or even

$array = array('a', 'b', 'c', 'd');
unset($array[2]);
echo $array[sizeof($array) - 1]; // Output: PHP Notice:  Undefined offset:  2 in - on line 4
share|improve this question

7 Answers

up vote 82 down vote accepted

Try

$myLastElement = end($yourArray);

To reset it (thanks @hopeseekr):

 reset($array);

Link to manual

@David Murdoch added: $myLastElement = end(array_values($yourArray));// and now you don't need to call reset(). On E_STRICT this produces the warning

Strict Standards: Only variables should be passed by reference

Thanks o_O Tync and everyone!

share|improve this answer
1  
Awesome! Obviously I know about the manual (as i linked to it in my question) but it's a LOT of functions to parse and I missed that one. Thanks, bro. – Theodore R. Smith Sep 10 '10 at 18:42
3  
end($array); reset($array); problem solved ;-) – Theodore R. Smith Sep 10 '10 at 18:53
1  
The second answer totally doesn't work for key-based arraymaps. In fact, there's no good way except end() as far as I know. I've rescinded the acceptance of this answer until you remove the second part of your answer. – Theodore R. Smith Sep 10 '10 at 18:57
3  
Use $myLastElement = end(array_values($yourArray)); and now you don't need to call reset(). – David Murdoch Apr 7 '12 at 14:39
4  
If your server is consuming too much RAM so that calling one simple extra function is a deal breaker, I suggest you re-examine your server's configuration and resources. – Chris Jul 2 '12 at 19:16
show 5 more comments
 $myLastElement = end($myphpArray);
share|improve this answer

In almost every language with arrays you can't really go wrong with A[A.size-1]. I can't think of an example of a language with 1 based arrays (as opposed to zero based).

share|improve this answer
3  
This may not work in PHP, as PHP arrays are more similar to hashes. Consider unset($a[3]). Now $a's indices are 0,1,2,4,5 and $a[count($a) - 1] yields index 4, not 5. It gets even worse if you have non-numeric keys... – meagar Sep 10 '10 at 18:48
1  
You can go wrong. Say you unset a middle element, PHP does not reindex the remaining elements. For example, the following code will produce an Undefined offset notice: $arr = array('a', 'b', 'c'); unset($arr[1]); echo $arr[count($arr)-1]; – webbiedave Sep 10 '10 at 18:49
@meagar: jinx!! – webbiedave Sep 10 '10 at 18:50
2  
@webbiedave My god man! Stop following me! – meagar Sep 10 '10 at 18:50
1  
@gabriel actually it's a hashmap under the hood. – Theodore R. Smith Sep 10 '10 at 19:03
show 5 more comments

I need this quite often to deal with stacks, and i always find myself baffled that there's no native function that does it without manipulating the array or its internal pointer in some form.

So i usually carry around a util function that's also safe to use on associative arrays.

function array_last($array) {
    if (count($array) < 1)
        return null;

    $keys = array_keys($array);
    return $array[$keys[sizeof($keys) - 1]];
}
share|improve this answer

untested: wouldn't this work?

<?php
$last_element=end(array_values($array));
?>

Since the array returned by array_values is fleeting, no-one cares if it's pointer is reset.

and if you need the key to go with it I guess you'd do:

<?php
$last_key=end(array_keys($array));
?>
share|improve this answer

Pop it,push it! Perhaps this is the fastest method, also you have not to reset array pointer too.

$d=[1,2,21,6];
$i=array_pop($d);
array_push($d,$i);
var_dump($d);
share|improve this answer

What if you want to get the last element of array inside of the loop of it's array?

The code below will result into an infinite loop:

foreach ($array as $item) {
 $last_element = end($array);
 reset($array);
 if ($last_element == $item) {
   // something useful here
 }
}

The solution is obviously simple for non associative arrays:

$last_element = $array[sizeof ($array) - 1];
foreach ($array as $key => $item) {
 if ($last_element == $item) {
   // something useful here
 }
}
share|improve this answer
this is too large code when simple function available – Nilesh patel Jan 25 at 7:30
I know about end() and reset() functions. My comment was related to loops like foreach or while where you cannot use these functions because reset function resets the inner pointer of an array which is used in the loop for iteration. Sorry for that, the question was more simple, I just wanted to give more advanced situation I came across in my project. Best regards. – Vadim Podlevsky Jan 28 at 12:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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