Skip to content

Instantly share code, notes, and snippets.

@pedrokoblitz
Created September 19, 2012 21:46
Show Gist options
  • Save pedrokoblitz/3752504 to your computer and use it in GitHub Desktop.
Save pedrokoblitz/3752504 to your computer and use it in GitHub Desktop.
php equivalent of python set(list)
function conjunto($dados)
{
return array_map("unserialize", array_unique(array_map("serialize", $dados)));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment