> Is there any way to get the key of an element added to an array with []?
>  I need to use this for a reference to it.  The only idea I can think of
> is to foreach through the array and use the last key looped through, but
> that seems very dirty.

If elements are only being added with [], then you should be able to keep a
count as  you go.

Easy way would be to add it like this:

$array[$x++] = $your_value;

Then you'll have ($x-1) as the element just added, if you need it.

---John Holmes...


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to