Skip to content

Instantly share code, notes, and snippets.

@banksy89
Created May 15, 2012 11:39
Show Gist options
  • Save banksy89/2701064 to your computer and use it in GitHub Desktop.
Save banksy89/2701064 to your computer and use it in GitHub Desktop.
Finds the most common value within an array.
function commonValue ( $array )
{
$counted = array_count_values ( $array );
arsort ( $counted );
return ( key ( $counted ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment