I have an array that is structured like this:
[33] => Array ( [time] => 1285571561 [user] => test0 ) [34] => Array (
$last = array_slice($array, -1, 1, true);
See http://php.net/array_slice for details on what the arguments mean.
P.S. Unlike the other answers, this one actually does what you want. :-)