Skip to content

Instantly share code, notes, and snippets.

@CptLemming
Created April 23, 2014 13:43
Show Gist options
  • Save CptLemming/11215665 to your computer and use it in GitHub Desktop.
Save CptLemming/11215665 to your computer and use it in GitHub Desktop.
Check if an array is associative
function isAssoc($arr) {
return array_keys($arr) !== range(0, count($arr) - 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment