vote up 1 vote down star

What would be the most performant way of checking if an array is associative or not in PHP?

flag

Duplicate stackoverflow.com/questions/173400/… – cletus Aug 25 at 10:15

4 Answers

vote up 4 vote down check

I think you are looking for - http://stackoverflow.com/questions/173400/php-arrays-a-good-way-to-check-if-an-array-is-associative-or-sequential

Is_Array?

link|flag
+1 Thank you, finally someone has provided me with an answer other lecturing me about what arrays in PHP are and aren't. ~_~ – eyze Aug 25 at 6:14
vote up 0 vote down

If it is for the purpose of iterating through an array, to be safe you can always use foreach.

link|flag
I know, but it's not. – eyze Aug 25 at 6:15
vote up -1 vote down
is_int(key($someArray))
link|flag
consider array('foo'=>'bar',27=>'Hello') – Alan Storm Aug 25 at 6:08
I know. But because this is all just a concept (indexed or associative), you can also choose to never use mixed arrays (with both integer and string indices). If you would adhere to these principles, the code above would suffice. – Vincent W Aug 25 at 11:15
It's slightly more than a concept. Although there's a single Array type in PHP, many of the built in functions will operate differently on an array with a series of sequential integers than they will on a array with a non-sequential series of mixed keys. – Alan Storm Aug 25 at 18:14
vote up -1 vote down

There are only associative arrays in PHP.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.