up vote 58 down vote favorite
33
share [g+] share [fb]

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');
link|improve this question

1  
Due to the nature of PHP arrays being tuples, and being loosely typed, I don't think you can with 100% certainty depend on any method, unless you be sure to associate keys as non-numbers. – Incognito Oct 8 '10 at 0:46
feedback

25 Answers

up vote 64 down vote accepted

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|improve this answer
Interesting, never would have thought of that! – Darryl Hein Oct 19 '08 at 5:07
10  
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 '09 at 20:43
13  
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 '09 at 2:42
3  
This won't be able to check arrays that do not start at the 0 index, or have holes in the array. – Mark Story Sep 13 '10 at 3:42
2  
This answer works inconsistently, -1. – Adam Apr 6 '11 at 17:37
show 2 more comments
feedback

Surely this is a better alternative.

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

?>
link|improve this answer
1  
Good job. I made this suggestion on the same question (stackoverflow.com/questions/902857/php-getting-array-type/…), 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 '09 at 13:23
1  
It works perfectly :) – Bruno De Barros Nov 22 '09 at 12:09
1  
This will duplicate the values in the array, which is potentially very expensive. You're much better off examining the array keys. – meagar Jan 20 '11 at 15:47
If one of the array values is unset, this code no longer returns a valid result (e.g., unset($arr[0]); $isIndexed = array_values($arr) === $arr; // returns false.) – Adam Apr 6 '11 at 17:57
feedback

I stumble upon this problem recently, and this is how I check whether an array is assoc or not

function is_assoc($array) {
  return (bool)count(array_filter(array_keys($array), 'is_string'));
}

that function assumes:

  1. is_array($array) == true
  2. if there is at least one string key, $array will be regarded as associative array

hope that helps

link|improve this answer
Personally, I like this solution a lot. It's clean, i.e. it will treat "1" as an associative key, not a numeric key. As of PHP 5.1 you could use type hinting in the function argument "array $array" to help you force the type of $array. Further, you could create a similar function to test for purely associative arrays, i.e. arrays without numeric keys (compare the result of count() with the size of $array). – Chris Dec 14 '10 at 12:43
Thanks Chris for the comment. Yeah I forgot about the type hinting in argument list, but I personally never use it so it never occurred to me. – Captain kurO Jan 31 '11 at 10:35
I prefer this method as bool false can be trusted to be a completely indexed array. – NexusRex Apr 10 '11 at 15:43
feedback
function checkAssoc($array){
    return  ctype_digit( implode('', array_keys($array) ) );
}
link|improve this answer
2  
This is the only answer (at the time of my comment) that can deal with the following: $array = array(0=>'blah', 2=>'yep', 3=>'wahey') – Shabbyrobe Aug 3 '10 at 11:01
2  
Does that work if one of the keys is the empty string? – Donal Fellows Feb 9 '11 at 13:30
but array('1'=>'asdf', '2'=>'too') will be regarded as associative array while it's actually not (the keys are actually string) – Captain kurO Apr 14 '11 at 7:41
feedback

Actually the most efficient way is thus:

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

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|improve this answer
7  
It would be more efficient to do: $a = array_keys($a); return ($a != array_keys($a));. – Alix Axel Aug 28 '10 at 19:58
actually I was thinking, where does $values come from? – thephpdeveloper Feb 23 '11 at 1:00
feedback

Many commenters in this question don't understand how arrays work in PHP. From the array documentation:

A key may be either an integer or a string. If a key is the standard representation of an integer, it will be interpreted as such (i.e. "8" will be interpreted as 8, while "08" will be interpreted as "08"). Floats in key are truncated to integer. The indexed and associative array types are the same type in PHP, which can both contain integer and string indices.

In other words, there is no such thing as an array key of "8" because it will always be (silently) converted to the integer 8. So trying to differentiate between integers and numeric strings is unnecessary.

If you want the most efficient way to check an array for non-integer keys without making a copy of part of the array (like array_keys() does) or all of it (like foreach does):

for (reset($my_array); is_int(key($my_array)); next($my_array));
$onlyIntKeys = is_null(key($my_array));

This works because key() returns NULL when the current array position is invalid and NULL can never be a valid key (if you try to use NULL as an array key it gets silently converted to "").

link|improve this answer
feedback

This function can handle:

  • array with holes in index (e.g. 1,2,4,5,8,10)
  • array with "0x" keys: e.g. key '08' is associative while key '8' is sequential.

the idea is simple: if one of the keys is NOT an integer, it is associative array, otherwise it's sequential.

function is_asso($a){
    foreach(array_keys($a) as $key) {if (!is_int($key)) return TRUE;}
    return FALSE;
}
link|improve this answer
feedback

I've used both array_keys($obj) !== range(0, count($obj) - 1) and array_values($arr) !== $arr (which are duals of each other, although the second is cheaper than the first) but both fail for very large arrays. Interestingly enough I encountered this while trying to figure out why json_encode was failing for a large array, so I wrote my own replacement for it which failed as well (and this was where it failed).

In essence, array_keys and array_values are both very costly operations (since they build a whole new array of size roughly that of the original).

The following function is more robust than the methods provided above, but not perfect:

function array_type( $obj ){
    $last_key = -1;
    $type = 'index';
    foreach( $obj as $key => $val ){
        if( !is_int( $key ) ){
            return 'assoc';
        }
        if( $key !== $last_key + 1 ){
            $type = 'sparse';
        }
    $last_key = $key;
    }
    return $type;
}

Note that if I wrote foreach( array_keys( $obj ) as $key ){ } then it would fail just as quickly as the earlier described methods.

Also note that if you don't care to differentiate sparse arrays from associative arrays you can simply return 'assoc' for !is_int($key) and $key.

Finally, while this might seem much less "elegant" than a lot of "solutions" on this page, in practice it is vastly more efficient. Almost any associative array will be detected instantly. Only indexed arrays will get checked exhaustively, and the methods outlined above not only check indexed arrays exhaustively, they duplicate them.

link|improve this answer
feedback

Could this be the solution?

  public static function isArrayAssociative(array $array) {
    reset($array);
    $k = key($array);
    return !(is_int($k) || is_long($k));
  }

The caveat is obviously that the array cursor is reset but I'd say probably the function is used before the array is even traversed or used.

link|improve this answer
feedback
function is_associative($arr) {
  return (array_merge($arr) !== $arr || !is_numeric(implode(array_keys($arr))));
}
link|improve this answer
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
2  
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
1  
I like this one. The first conditional will detect associative arrays where numeric indices are not numerically sequential, or where the first index is not "0", because array_merge will re-index keys of a numerically indexed (but possibly associative) array. – DWright Nov 10 '10 at 18:30
feedback

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|improve this answer
feedback

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|improve this answer
feedback

Speed-wise:

function isAssoc($array)
{
    return ($array !== array_values($array));
}

Memory-wise:

function isAssoc($array)
{
    $array = array_keys($array); return ($array !== array_keys($array));
}
link|improve this answer
feedback

Best function to detect associative array (hash array)

<?php
function is_assoc($arr) { return (array_values($arr) !== $arr); }
?>
link|improve this answer
feedback

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|improve this answer
feedback
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|improve this answer
feedback

Modification on the most popular answer.
This takes a little more processing, but is more accurate.

<?php
//$a is a subset of $b
function isSubset($a, $b)
{
    foreach($a =>$v)
        if(array_search($v, $b) === false)
            return false;

    return true;

    //less effecient, clearer implementation. (uses === for comparison)
    //return array_intersect($a, $b) === $a;
}

function isAssoc($arr)
{
    return !isSubset(array_keys($arr), range(0, count($arr) - 1));
}

var_dump(isAssoc(array('a', 'b', 'c'))); // false
var_dump(isAssoc(array(1 => 'a', 0 => 'b', 2 => 'c'))); // false
var_dump(isAssoc(array("0" => 'a', "1" => 'b', "2" => 'c'))); // false 
//(use === in isSubset to get 'true' for above statement)
var_dump(isAssoc(array("a" => 'a', "b" => 'b', "c" => 'c'))); // true
?>
link|improve this answer
feedback

Another variant not shown yet, as it's simply not accepting numerical keys, but I like Greg's one very much :

 /* Returns true if $var associative array */  
  function is_associative_array( $array ) {  
    return is_array($array) && !is_numeric(implode('', array_keys($array)));  
  }
link|improve this answer
feedback

Here's the method I use:

function is_associative ( $a )
{
    return in_array(false, array_map('is_numeric', array_keys($a)));
}

assert( true === is_associative(array(1, 2, 3, 4)) );

assert( false === is_associative(array('foo' => 'bar', 'bar' => 'baz')) );

assert( false === is_associative(array(1, 2, 3, 'foo' => 'bar')) );

Note that this doesn't account for special cases like:

$a = array( 1, 2, 3, 4 );

unset($a[1]);

assert( true === is_associative($a) );

Sorry, can't help you with that. It's also somewhat performant for decently sized arrays, as it doesn't make needless copies. It is these little things that makes Python and Ruby so much nicer to write in... :P

link|improve this answer
feedback

Simple and performance friendly solution which only checks the first key.

function isAssoc($arr = NULL)
{
    if ($arr && is_array($arr))
    {
        foreach ($arr as $key => $val)
        {
            if (is_numeric($key)) { return true; }

            break;
        }
    }

    return false;
}
link|improve this answer
feedback

I met this problem once again some days ago and i thought to take advantage of the array_merge special property:

If the input arrays have the same string keys, then the later value for that key will overwrite the previous one. If, however, the arrays contain numeric keys, the later value will not overwrite the original value, but will be appended. Values in the input array with numeric keys will be renumbered with incrementing keys starting from zero in the result array. So why not to use:

function Is_Indexed_Arr($arr){
    $arr_copy = $arr;
    if((2*count($arr)) == count(array_merge($arr, $arr_copy))){
        return 1;
    }
    return 0;
}
link|improve this answer
feedback

My solution is to get keys of an array like below and check that if the key is not integer:

private function is_hash($array) {
    foreach($array as $key => $value) {
        return ! is_int($key);
    }
    return false;
}

It is wrong to get array_keys of a hash array like below:

array_keys(array(
       "abc" => "gfb",
       "bdc" => "dbc"
       )
);

will output:

array(
       0 => "abc",
       1 => "bdc"
)

So, it is not a good idea to compare it with a range of numbers as mentioned in top rated answer. It will always say that it is a hash array if you try to compare keys with a range.

link|improve this answer
The question is how to check if an array is sequential though. The array array(1 => 'foo', 0 => 'bar') is not sequential but will pass your test. For why that makes a difference, try json_encode($array) with sequential and associative arrays. – deceze Dec 17 '11 at 5:00
yes, i guess i got pretty confused and stuck with the above answers. Which kept comparing array_keys with a range and thought they will have an output which is comparison whether it is a hash or not. So my answer is to them and also to whom thinks that array_keys gives values are sequential. that's all. And also function name is is_hash so yes it doesn't tell you whether it is sequential or not – GO' Dec 19 '11 at 1:26
feedback

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|improve this answer
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
1  
+1 "that's dynamic programming for you" – vbence Dec 7 '11 at 10:41
feedback

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|improve this answer
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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