> Is it possible to grab a named index by position? My test is
> indicating not.
>
> Example:
>
> $things = array('food' => 'toast', 'location' => 'paris', 'mood' =>
> 'happy');
>
Maybe something like this?
echo array_pop(array_slice($things, 1, 1));