I am creating a faceted search, and I\'m am trying to use array_intersect to compare the arrays and find the inputs that match.
array_intersect
The problem is that I wi
One can use:
$intersect = array_intersect(...$fullArray);