Created
April 23, 2014 13:43
-
-
Save CptLemming/11215665 to your computer and use it in GitHub Desktop.
Check if an array is associative
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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