Ok, two arrays:
$first = array(1,2,3,4,5,6,7,8,9,10);
$second = array(1,2,3,4,5);
Is there a way (without looping through them if it can be helped) of doing an array_merge style function where it returns this array:
$new = array(6,7,8,9,10);
Where if it finds a match, it does not return it.
See
array_diff()