3v4l.org

run code in 300+ PHP versions simultaneously
<?php $remove = array( "Remove Me", "Delete this", "this", ); $haystack = array( "Data", "Ddddata", "Remove Me", "Delete this", "Foo", "Bar", "Don't Remove this", "remove me", // Not really! "got this", "this", ); var_dump(array_filter($haystack, function($e) use ($remove) { return !in_array($e, $remove); }));

preferences:
35.95 ms | 402 KiB | 5 Q