[PHP] I'm doing something wrong....

2002-05-15 Thread Robert Rothe

I've created an array.  A very simple array that uses strings as keys.

aname['one']=something;
aname['two']=something else;

Isn't there any way to directly access the 'n'th element?  
example: aname[0]?

I've searched the group, but haven't found anything.  Am I missing
something or can't this be done?

TIA,

Rob

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




Re: [PHP] I'm doing something wrong....

2002-05-15 Thread Robert Rothe

Thanks.  So the next() and prev() functions just traverse an array using
some type of linked list?  This is what precludes direct access to
specific elements?



"Thalis A. Kalfigopoulos" wrote:
> 
> In an associative array, there is no notion of the 'n-th' element. So AFAIK you 
>can't do that.
> 
> cheers,
> thalis
> 
> On Wed, 15 May 2002, Robert Rothe wrote:
> 
> > I've created an array.  A very simple array that uses strings as keys.
> >
> > aname['one']=something;
> > aname['two']=something else;
> >
> > Isn't there any way to directly access the 'n'th element?
> >   example: aname[0]?
> >
> > I've searched the group, but haven't found anything.  Am I missing
> > something or can't this be done?
> >
> > TIA,
> >
> > Rob
> >
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >

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