How to check if PHP array is associative or sequential? How to check if PHP array is associative or sequential? php php

How to check if PHP array is associative or sequential?


You have asked two questions that are not quite equivalent:

  • Firstly, how to determine whether an array has only numeric keys
  • Secondly, how to determine whether an array has sequential numeric keys, starting from 0

Consider which of these behaviours you actually need. (It may be that either will do for your purposes.)

The first question (simply checking that all keys are numeric) is answered well by Captain kurO.

For the second question (checking whether the array is zero-indexed and sequential), you can use the following function:

function isAssoc(array $arr){    if (array() === $arr) return false;    return array_keys($arr) !== range(0, count($arr) - 1);}var_dump(isAssoc(['a', 'b', 'c'])); // falsevar_dump(isAssoc(["0" => 'a', "1" => 'b', "2" => 'c'])); // falsevar_dump(isAssoc(["1" => 'a', "0" => 'b', "2" => 'c'])); // truevar_dump(isAssoc(["a" => 'a', "b" => 'b', "c" => 'c'])); // true


To merely check whether the array has non-integer keys (not whether the array is sequentially-indexed or zero-indexed):

function has_string_keys(array $array) {  return count(array_filter(array_keys($array), 'is_string')) > 0;}

If there is at least one string key, $array will be regarded as an associative array.


Surely this is a better alternative.

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