Skip to content

Instantly share code, notes, and snippets.

@xwero
Last active August 15, 2016 19:45
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 xwero/d3fabe18744ca122b6e1d6d71c942546 to your computer and use it in GitHub Desktop.
Save xwero/d3fabe18744ca122b6e1d6d71c942546 to your computer and use it in GitHub Desktop.
function array_filter_by_excluded_keys(array $haysack, array $excluded) {
return array_filter($haysack, function($key) use ($excluded) {
return !in_array($key, $excluded);
}, ARRAY_FILTER_USE_KEY);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment