3v4l.org

run code in 300+ PHP versions simultaneously
<?php $remove = array( "Remove Me", "Delete this", "this", ); $haystack = array( array("Data"), array("Ddddata"), array("Remove Me","More data"), array("Delete this", "More!"), array("Foo","Test"), array("Bar"), array("Don't Remove this","Okay we lied","Remove Me"), array("remove me"), // Not really! array("got this"), array("this"), ); var_dump(array_filter($haystack, function($e) use ($remove) { return count(array_intersect($e, $remove)) > 0; }));
Output for git.master, git.master_jit, rfc.property-hooks
array(4) { [2]=> array(2) { [0]=> string(9) "Remove Me" [1]=> string(9) "More data" } [3]=> array(2) { [0]=> string(11) "Delete this" [1]=> string(5) "More!" } [6]=> array(3) { [0]=> string(17) "Don't Remove this" [1]=> string(12) "Okay we lied" [2]=> string(9) "Remove Me" } [9]=> array(1) { [0]=> string(4) "this" } }

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
63.01 ms | 402 KiB | 8 Q