Posted by Rami Elomaa on 05/15/07 15:07
harvey kirjoitti:
> What is the easiest way to get both the last item name and last item
> value from an associative array?
>
> I can get the value with array_pop() but can't see anything similar
> for the item's name.
>
$val_last = end($array);
// Sets the internal pointer to last element while it retuns the value
$key_last = key($array);
// Returns the key of the element the internal pointer is at
--
Rami.Elomaa@gmail.com
"Wikipedia on vähän niinq internetin raamattu, kukaan ei pohjimmiltaan
usko siihen ja kukaan ei tiedä mikä pitää paikkansa." -- z00ze
Navigation:
[Reply to this message]
|