Is there a built-in function to get all members of array 1 which do not exist in array 2? I know how to do it programatically, only wondering if there is a built-in function
$diff = array_diff($array1, $array2);
array_diff()