Issue
I have 2 arrays:
$first = array(1,1,2,3,4);
$second = array(1,2,3,4,5);
when i use $count = array_intersect($first, $second);, and count($count); the matches, it shows 5, resulting in 1 intersecting twice. I need to get 4, which doesn't count duplicates.
how can I achieve that in php?
thanks in advance.
Solution
It's very simple: first make sure your arrays are unique, and then apply array_intersect:
$count = count(array_intersect(array_unique($first), array_unique($second)));
Repro case on 3v4l.
Answered By - vixducis
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.