Skip to content

Instantly share code, notes, and snippets.

@iprodev
Last active December 14, 2018 18:00
Show Gist options
  • Save iprodev/0a7b8d7f39defdb19a2aa1ddb3cec894 to your computer and use it in GitHub Desktop.
Save iprodev/0a7b8d7f39defdb19a2aa1ddb3cec894 to your computer and use it in GitHub Desktop.
PHP : Check if array has duplicate values
<?php
/**
* Check if array has duplicate values
*
* @param array $array Specific array to check
* @return boolean
*/
function array_has_duplicate( $array ) {
return count( $array ) !== count( array_keys( array_flip( $array ) ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment