Skip to content

Instantly share code, notes, and snippets.

@mytholog
Last active December 10, 2015 20:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mytholog/4490916 to your computer and use it in GitHub Desktop.
Save mytholog/4490916 to your computer and use it in GitHub Desktop.
isAssoc
public static function isAssoc(array $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