Re: [PHP] Check for Associative Array

2002-07-18 Thread Steve Edberg
At 12:57 PM -0400 7/18/02, Henning Sittler wrote: >What's the best way to check for an Associative Array? There is no >is_assoc() or similiar function listed in the manual (I don't think anyway). No, because AFAIK all PHP arrays are associative; there is no distinction between arrays & hashes

Re: [PHP] Check for Associative Array

2002-07-18 Thread Kevin Stone
y, July 18, 2002 10:57 AM Subject: [PHP] Check for Associative Array > What's the best way to check for an Associative Array? There is no > is_assoc() or similiar function listed in the manual (I don't think anyway). > > I'm using mysql_fetch_array() and I want to fo

Re: [PHP] Check for Associative Array

2002-07-18 Thread Martin Clifford
Oh well. And HTH means "Hope to Help". > For some unknown reason the OP specifically does not want to use > mysql_fetch_assoc()! Martin Clifford Homepage: http://www.completesource.net Developer's Forums: http://www.completesource.net/forums/ -- PHP General Mailing List (http://www.php.net/

Re: [PHP] Check for Associative Array

2002-07-18 Thread Jason Wong
On Friday 19 July 2002 01:19, Martin Clifford wrote: > Try this: > > while($row = mysql_fetch_assoc($result)) { > // code here > } > > This way, the resulting array will ONLY be associative. For some unknown reason the OP specifically does not want to use mysql_fetch_assoc()! > I'm using my

RE: [PHP] Check for Associative Array

2002-07-18 Thread Henning Sittler
Ya, except I want the whole array to exist (index and assoc. array), not just the assoc. array. So, for the time being, I'll just do this: foreach ($arr as $key=>$value) { if ( !is_int($key) ) { echo "$key:$value"; } } What is HTH ?? Henning Sittler www.inscriber.com Try this: while($ro

Re: [PHP] Check for Associative Array

2002-07-18 Thread Martin Clifford
Try this: while($row = mysql_fetch_assoc($result)) { // code here } This way, the resulting array will ONLY be associative. HTH! Martin Clifford Homepage: http://www.completesource.net Developer's Forums: http://www.completesource.net/forums/ >>> Henning Sittler <[EMAIL PROTECTED]> 07/18

[PHP] Check for Associative Array

2002-07-18 Thread Henning Sittler
What's the best way to check for an Associative Array? There is no is_assoc() or similiar function listed in the manual (I don't think anyway). I'm using mysql_fetch_array() and I want to foreach only the assoc. part of the array without using mysql_fetch_assoc(): foreach ($arr as $key=>$value)