3v4l.org

run code in 300+ PHP versions simultaneously
<?php function array_key_match($target, $match) { $targetKeys = array_keys($target); $diff = array_diff($target, $match); return ($diff == array_diff($diff, $match)); } function test($target, $match, $expect) { return preg_replace('/\n/', '', sprintf( "Target %s, Match %s: %s", print_r($target, true), print_r($match, true), (array_key_match($target, $match) == $expect) ? 'true' : 'false' )) . "\n"; } print test([1, 2, 3, 4, 5], [2, 3], true); print test(['a', 'b', 'c'], ['c', 'b'], true); print test([1, 2, 3, 4, 5], [4, 5, 6], false);

preferences:
37.75 ms | 402 KiB | 5 Q