I have an array structure where I want to check if a key/value is present somewhere in the array. But I want to make the test in such a way that I make a an almost mirrored validation array.
Lets say I have a multidimensional array. This is the data I want to validate.
Array
(
[key1] => Array
(
[subkey1] => value
[subkey2] => value
)
[key2] => Array
(
[subkey3] => Array
(
[key1] => value
[key2] => value
[key3] => value
[key4] => value
[key5] => value
[key6] => value
)
)
);
And this is the array of my keys and values that need to be present in the first array.
Array
(
[key1] => Array
(
[subkey2] => value
)
[key2] => Array
(
[subkey3] => Array
(
[key5] => value
[key6] => value
)
)
);
I cant compare the two arrays because they will never be the same. But I need to run through the data array somehow and validate up against the validation array. Both the key and value need to be at the right place and the key need the same name and the value should be the same as well. I'm just not sure how to make a decent check. Can I make some recursive check? Since some of the keys can be a value or another array it needs to check for this as well... that's why I'm thinking recursive but I'm not sure how to make that.
Hope you can help. Thanks.