Skip to content

Instantly share code, notes, and snippets.

@reloadlife
Created February 12, 2019 08:07
Show Gist options
  • Save reloadlife/1fbaab70bfcbf83d7d3c617bcf63868d to your computer and use it in GitHub Desktop.
Save reloadlife/1fbaab70bfcbf83d7d3c617bcf63868d to your computer and use it in GitHub Desktop.
<?php
function removeArray ($data, $blacklist) {
return array_filter($data, function ( $k, $v = null ) use ($blacklist) {
return !in_array($k, $blacklist);
});
}
$result = removeArray ( [ "blue", "red", "green", "yellow" => "yup", ], ["red" => "hey", "green" => "someData", ]);
var_dump( $result );
// array(4) {
// [0] => string(4) "blue"
// [1] => string(3) "red"
// [2] => string(5) "green"
// ["yellow"] => string(3) "yup"
// }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment