Thursday, January 6, 2022

[FIXED] get array_intersect count without duplicates php

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

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.