Re: [PHP] Associative arrays (names and strings) From: _lallous (elias_bachaalany <email protected>)
Date: 08/30/01

not what I want!
i want something like this when you do mysql_fetch_array() don't you get a
reference to your columuns via fieldname or array index?

ie. $row = mysql_fetch_array($result_set);
echo $row['name'];
or
echo $row[0];

same return same value! I want something like it with my initial post.

"Andrey Hristov" <andy <email protected>> wrote in message
news:027101c13145$a7e2af00$0b01a8c0 <email protected>
> <?php
> $arr = array("set1" => array(1, 2, 3, 4), "set2" => array(11, 22, 33,
44),
> "set3" => array(111, 222, 333, 444));
> $a=array_keys($arr);
> var_dump($a);
> // var_dump(array_keys($arr)["set1"]); not possible
>
> ?>
>
> Andrey Hristov
> IcyGEN Corporation
> http://www.icygen.com
> 99%
>
>
> ----- Original Message -----
> From: "_lallous" <elias_bachaalany <email protected>>
> To: <php-general <email protected>>
> Sent: Thursday, August 30, 2001 3:00 PM
> Subject: [PHP] Associative arrays (names and strings)
>
>
> > Anyway to do this fast:
> >
> > $arr = array("set1" => array(1, 2, 3, 4), "set2" => array(11, 22, 33,
44),
> > "set3" => array(111, 222, 333, 444));
> >
> > It's not that I want to access $arr like: echo $arr['set1']
> > I also want to access it as: echo $arr[1] (and it must be equal to
> > $arr['set1'];
> >
> > and It seems i can't do this:
> > $arr = array("set1", 1 => array(1, 2, 3, 4), "set2", 2 => array(11, 22,
33,
> > 44), "set3", 3 => array(111, 222, 333, 444));
> >
> > any suggestion to get an array associated by both number and string
keys?
> >
> >
> >
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, e-mail: php-general-unsubscribe <email protected>
> > For additional commands, e-mail: php-general-help <email protected>
> > To contact the list administrators, e-mail: php-list-admin <email protected>
> >
> >
>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: php-general-unsubscribe <email protected>
For additional commands, e-mail: php-general-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>