Skip to content

Instantly share code, notes, and snippets.

@fatgy
Created August 20, 2013 04:51
Show Gist options
  • Save fatgy/6277218 to your computer and use it in GitHub Desktop.
Save fatgy/6277218 to your computer and use it in GitHub Desktop.
function leo_array_diff($a, $b) {
$map = $out = array();
foreach($a as $val) $map[$val] = 1;
foreach($b as $val) unset($map[$val]);
return array_keys($map);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment