vote up 3 vote down star
2

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?

flag

6 Answers

vote up 8 vote down check

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

is_array($arr[0]);

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()):

$ more multi.php
<?php

$a = array(1 => 'a',2 => 'b',3 => array(1,2,3));
$b = array(1 => 'a',2 => 'b');
$c = array(1 => 'a',2 => 'b','foo' => array(1,array(2)));

function is_multi($a) {
    $rv = array_filter($a,'is_array');
    if(count($rv)>0) return true;
    return false;
}

function is_multi2($a) {
    foreach ($a as $v) {
        if (is_array($v)) return true;
    }
    return false;
}

function is_multi3($a) {
    $c = count($a);
    for ($i=0;$i<$c;$i++) {
        if (is_array($a[$i])) return true;
    }
    return false;
}
$iters = 500000;
$time = microtime(true);
for ($i = 0; $i < $iters; $i++) {
    is_multi($a);
    is_multi($b);
    is_multi($c);
}
$end = microtime(true);
echo "is_multi  took ".($end-$time)." seconds in $iters times\n";

$time = microtime(true);
for ($i = 0; $i < $iters; $i++) {
    is_multi2($a);
    is_multi2($b);
    is_multi2($c);
}
$end = microtime(true);
echo "is_multi2 took ".($end-$time)." seconds in $iters times\n";
$time = microtime(true);
for ($i = 0; $i < $iters; $i++) {
    is_multi3($a);
    is_multi3($b);
    is_multi3($c);
}
$end = microtime(true);
echo "is_multi3 took ".($end-$time)." seconds in $iters times\n";
?>

$ php multi.php
is_multi  took 7.53565130424 seconds in 500000 times
is_multi2 took 4.56964588165 seconds in 500000 times
is_multi3 took 9.01706600189 seconds in 500000 times

Implicit looping, but we can't shortcircuit as soon as a match is found...

$ more multi.php
<?php

$a = array(1 => 'a',2 => 'b',3 => array(1,2,3));
$b = array(1 => 'a',2 => 'b');

function is_multi($a) {
    $rv = array_filter($a,'is_array');
    if(count($rv)>0) return true;
    return false;
}

var_dump(is_multi($a));
var_dump(is_multi($b));
?>

$ php multi.php
bool(true)
bool(false)
link|flag
Good, with the caveat that I believe that your filtering line should have array_map("is_array",$a), not using is_array as a bareword. – Matthew Scharley Sep 28 '08 at 6:54
Good catch, that sped up is_multi, but still not good enough to match foreach – Vinko Vrsalovic Sep 28 '08 at 6:59
vote up 2 vote down

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'; }

link|flag
Nice trick, +1. – Ionut G. Stan Jun 15 at 5:39
vote up 3 vote down

For PHP 4.2.0 or newer:

function is_multi($array) {
    return (count($array) != count($array, 1));
}
link|flag
vote up -1 vote down

Edit: It's late and there is nothing to see here...

You could check that array_flip($the_array) returns false. This is a terrible idea and depending on the size of the array could take longer than just running an is_array() loop.

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.

array_flip

link|flag
that doesn't work, it throws a warning and flips the rest, at least in my php version – Vinko Vrsalovic Sep 28 '08 at 7:14
vote up 1 vote down

This function will return int number of array dimensions (stolen from here).

function countdim($array)
{
   if (is_array(reset($array))) 
     $return = countdim(reset($array)) + 1;
   else
     $return = 1;

   return $return;
}
link|flag
This will only work for Greg's case. It's not a general solution to the problem where the second dimension could be anywhere in the array – Vinko Vrsalovic Sep 28 '08 at 6:38
vote up 1 vote down

You could look check is_array() on the first element, under the assumption that if the first element of an array is an array, then the rest of them are too.

link|flag
That's actually a good point. In my particular case, it's an either/or situation since I am controlling the creation of the original array. I'll leave the question open for now in case there's a solution that might work more generally though. – Wilco Sep 28 '08 at 6:27

Your Answer

Get an OpenID
or

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