Skip to content

Instantly share code, notes, and snippets.

@sradhaa
Forked from psdtohtml5/gist:6071607
Created December 7, 2018 05:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sradhaa/e75dca9a9ea827a996a7be86dbc304ce to your computer and use it in GitHub Desktop.
Save sradhaa/e75dca9a9ea827a996a7be86dbc304ce 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));
}
@sradhaa
Copy link
Author

sradhaa commented Dec 7, 2018

nice logic

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