Skip to content

Instantly share code, notes, and snippets.

@psdtohtml5
Created July 24, 2013 15:26
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save psdtohtml5/6071607 to your computer and use it in GitHub Desktop.
Save psdtohtml5/6071607 to your computer and use it in GitHub Desktop.
PHP : Check if array has duplicate values
function array_has_dupes($array) {
return count($array) !== count(array_unique($array));
}
@archie-bryann
Copy link

Accurate

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment