I have 2 arrays which might look something like this:
$a1 = array('c','b','a');
$a2 = array('a', 'b', 'c', 'd', 'e');
I need to somehow check whether every value in $a1 is present in $a2.
I've looked at array_diff and array_intersect but can't see how they can be used because the only return the values that are present and not present respectively.