matchmaker icon indicating copy to clipboard operation
matchmaker copied to clipboard

Can I check that array does NOT contain fields other than those in pattern?

Open lezhnev74 opened this issue 9 years ago • 0 comments

If I have an array:

$array = [
    "key1" => true,
    "key2" => false
];

then can I check that array has only key1 and nothing else?

$pattern = [
    "key1" => ":bool"
];
matchmaker\matches($array, $pattern)

lezhnev74 avatar Nov 19 '16 08:11 lezhnev74