vote up 10 vote down star
8

PHP treats all arrays as associative, so there aren't any built in functions. Can anyone recommend a fairly efficient way to check if an array contains only numeric keys?

Basically, I want to be able to differentiate between this:

$sequentialArray = array('apple', 'orange', 'tomato', 'carrot');

and this:

$assocArray = array('fruit1' => 'apple', 
                    'fruit2' => 'orange', 
                    'veg1' => 'tomato', 
                    'veg2' => 'carrot');
flag

11 Answers

vote up 27 vote down check

This will do it for you

<?php
function isAssoc($arr)
{
    return array_keys($arr) !== range(0, count($arr) - 1);
}

var_dump(isAssoc(array('a', 'b', 'c'))); // false
var_dump(isAssoc(array("0" => 'a', "1" => 'b', "2" => 'c'))); // false
var_dump(isAssoc(array("1" => 'a', "0" => 'b', "2" => 'c'))); // true
var_dump(isAssoc(array("a" => 'a', "b" => 'b', "c" => 'c'))); // true

?>
link|flag
Interesting, never would have thought of that! – Darryl Hein Oct 19 '08 at 5:07
5  
This doesn't always work! Try running it against a array('ham'=>42) I think this is a result of a string evaluating as 0 in these cases. The fix is therefore to use !== rather than != in the comparison, which ensures type comparison in addition to value comparison – PeterJCLaw Oct 1 at 20:43
1  
Bear in mind that PHP can have non-sequential arrays with numeric indices. For example, if you do $a = array('a','b','c'); unset($a[1]);, the above function will return true. – JW Dec 7 at 2:42
vote up 0 vote down

I compare the difference between the keys of the array and the keys of the result of array_values() of the array, which will always be an array with integer indices. If the keys are the same, it's not an associative array.

function isHash($array) {
    if (!is_array($array)) return false;
    $diff = array_diff_assoc($array, array_values($array));
    return (empty($diff)) ? false : true;
}
link|flag
vote up 0 vote down

Actually the most efficient way is thus:

function is_assoc($a){
   return (array_keys($values) != array_keys(array_keys($values)));
}

This works because it compares the keys (which for a sequential array are always 0,1,2 etc) to the keys of the keys (which will always be 0,1,2 etc).

link|flag
vote up 0 vote down

I just use the key() function. Observe:

<?php
var_dump(key(array('hello'=>'world', 'hello'=>'world'))); //string(5) "hello"
var_dump(key(array('world', 'world')));     			 //int(0)
var_dump(key(array("0" => 'a', "1" => 'b', "2" => 'c'))); //int(0) who makes string sequetial keys anyway????
?>

Thus, just by checking for false, you can determine whether an array is associative or not.

link|flag
vote up 0 vote down
function isAssoc($arr)
{
    $a = array_keys($arr);
    for($i = 0, $t = count($a); $i < $t; $i++)
    {
    	if($a[$i] != $i)
    	{
    		return false;
    	}
    }
    return true;
}
link|flag
vote up 10 vote down

Surely this is a better alternative.

<?php
$arr = array(1,2,3,4);
$isIndexed = array_values($arr) === $arr;

?>
link|flag
1  
Good job. I made this suggestion on the same question (stackoverflow.com/questions/902857/…), and the more "manual" solutions got voted up, and I had someone tell me I was wrong because when he compared two different arrays, it wasn't == . LOL – grantwparks Jul 30 at 13:23
It works perfectly :) – Bruno De Barros Nov 22 at 12:09
vote up 0 vote down

Yet another way to do this.

function array_isassosciative($array)
{
    // Create new Blank Array
    $compareArray = array();

    // Make it the same size as the input array
    array_pad($compareArray, count($array), 0);

    // Compare the two array_keys
    return (count(array_diff_keys($array, $compareArray))) ? true : false;

}
link|flag
vote up -1 vote down

If your looking for just non-numeric keys (no matter the order) then you may want to try

function IsAssociative($array)
{
    return preg_match('/[a-z]/i', implode(array_keys($array)));
}
link|flag
vote up 1 vote down
function is_associative($arr) {
  return (array_merge($arr) !== $arr || !is_numeric(implode(array_keys($arr))));
}
link|flag
implode takes 2 arguments, plus, that function would return false for an array defined like this: $x = array("1" => "b", "0" => "a"); – nickf Oct 6 '08 at 7:20
The glue parameter of implode() became optional in PHP 4.3.0. Your example array -- $x = array("1" => "b", "0" => "a"); -- has an associative index of non-sequential strings. is_associative() will return true for that array, as expected. – scronide Oct 6 '08 at 7:56
vote up -1 vote down

One cheap and dirty way would be to check like this:

isset($myArray[count($myArray) - 1])

...you might get a false positive if your array is like this:

$myArray = array("1" => "apple", "b" => "banana");

A more thorough way might be to check the keys:

function arrayIsAssociative($myArray) {
    foreach (array_keys($myArray) as $ind => $key) {
        if (!is_numeric($key) || (isset($myArray[$ind + 1]) && $myArray[$ind + 1] != $key + 1)) {
            return true;
        }
    }
    return false;
}
// this will only return true if all the keys are numeric AND sequential, which
// is what you get when you define an array like this:
// array("a", "b", "c", "d", "e");

or

function arrayIsAssociative($myArray) {
    $l = count($myArray);
    for ($i = 0; $i < $l, ++$i) {
        if (!isset($myArray[$i])) return true;
    }
    return false;
}
// this will return a false positive on an array like this:
$x = array(1 => "b", 0 => "a", 2 => "c", 4 => "e", 3 => "d");
link|flag
vote up -2 vote down

Unless PHP has a builtin for that, you won't be able to do it in less than O(n) - enumerating over all the keys and checking for integer type. In fact, you also want to make sure there are no holes, so your algorithm might look like:

for i in 0 to len(your_array):
    if not defined(your-array[i]):
        # this is not an array array, it's an associative array :)

But why bother? Just assume the array is of the type you expect. If it isn't, it will just blow up in your face - that's dynamic programming for you! Test your code and all will be well...

link|flag
Normally just assuming the array is the desired type would be the way to go. But in my case I'm looping through a multidimensional array and am formatting the output depending on which type of array a given node is. – Wilco Oct 6 '08 at 7:24

Your Answer

Get an OpenID
or

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