array_udiff in PHP

array array_udiff(array array1, array array2[, … array arrayN], string function) Returns an array containing all the values in array1 that are not present in any of the other arrays. Only the values are used to check for equality; that is, “a” => 1 and “b” => 1 are considered equal. The function function is used … Read more