我想检查一个数组是否只包含允许的元素值(在另一个数组中可用)。
例子:
$allowedElements = array('apple', 'orange', 'pear', 'melon');
checkFunction(array('apple', 'orange'), $allowedElements); // OK
checkFunction(array('pear', 'melon', 'dog'), $allowedElements); // KO invalid array('dog') elements
实现此 checkFunction($a, $b) 函数的最佳方法是什么?