I need to compare a variable number of arrays looking for common elements, BUT it has to be done in a singular fashion, so array_intersect() fails. By singular I mean that it must check array1 against array2 then array1 against array3 then array2 against array3, ... etc. and end up with a list of unique elements that are shared in any 2 arrays.
I did try call_user_func_array('array_intersect',$stack) where $stack was an array of all arrays to be compared. Again, that failed because it looks for intersections in ALL arrays, and does not check singularly.
$arr1 = array('temporal','disease','funny','fancy');
$arr2 = array('jaime','delusional','something','temporal');
$arr3 = array('funny','faeries','vampire');
$arr4 = array('shifty','fancy','funky','fantastic');
The result of the comparison should be something like:
temporal, funny, fancy
Any ideas?