What is the most efficient way to check if an array is a flat array of primitive values or if it is a multidimensional array? Is there any way to do this without actually looping through an array and running is_array() on each of its elements?
|
|
The short answer is no you can't do it without at least looping implicitly if the 'second dimension' could be anywhere. If it has to be in the first item, you'd just do
But, the most efficient general way I could find is to use a foreach loop on the array, shortcircuiting whenever a hit is found (at least the implicit loop is better than the straight for()):
Implicit looping, but we can't shortcircuit as soon as a match is found...
|
||||
|
|
|
use count() twice, one time in default mode, and one time in recursive mode. if the values match, the array is not multidimensional. if (count($array) == count($array, COUNT_RECURSIVE)) { echo 'array is not multidimensional'; } else { echo 'array is multidimensional'; } |
||
|
|
|
For PHP 4.2.0 or newer:
|
||
|
|
|
|
Edit: It's late and there is nothing to see here...
If it returns false the array contains at least one non-integer or non-string value. If you are only interested in determining if you have an array full of nothing but arrays, is_array() is clearly the way to go. |
|||
|
|
|
This function will return int number of array dimensions (stolen from here).
|
||
|
|
|
You could look check |
||
|
