Skip to content

Instantly share code, notes, and snippets.

@anthonybudd
Created May 26, 2017 14:27
Show Gist options
  • Select an option

  • Save anthonybudd/09bd7aaba7d429d937c076d665adf921 to your computer and use it in GitHub Desktop.

Select an option

Save anthonybudd/09bd7aaba7d429d937c076d665adf921 to your computer and use it in GitHub Desktop.
<?php
function isAssoc($array){
return count(array_filter(array_keys($array), 'is_string')) > 0;
}
$indexed = [
'apple',
'pear',
'grape'
];
$assoc = [
'fruit_1' => 'apple',
'fruit_2' => 'pear',
'fruit_3' => 'grape'
];
isAssoc($indexed); // false
isAssoc($assoc); // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment