Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Show only duplicate elements from an array

Tags:

arrays

php

I have an sorted array which contains first names of people. This array has lots of names which are same.

I want to output only duplicate names.

Example,

input array:

Array
(
    [0] => Abbas
    [1] => Abhay
    [2] => Abhinav
    [3] => Abhishek
    [4] => Aditya
    [5] => Ahmed
    [6] => Ahmed
    [7] => Ajay
    [8] => Ajay
}

It should return

Array
(
    [5] => Ahmed
    [6] => Ahmed
    [7] => Ajay
    [8] => Ajay
}
like image 937
Anil Dewani Avatar asked May 13 '11 16:05

Anil Dewani


2 Answers

Use this code:

# assuming your original array is $arr
array_unique(array_diff_assoc($arr, array_unique($arr)));

It will return unique duplicates but if you want non-unique duplicates then use:

array_diff_assoc($arr, array_unique($arr));

EDIT: Based on your comments, try this code:

$uarr = array_unique($arr);
var_dump(array_diff($arr, array_diff($uarr, array_diff_assoc($arr, $uarr))));

OUTPUT

array(4) {
  [5]=>
  string(5) "Ahmed"
  [6]=>
  string(5) "Ahmed"
  [7]=>
  string(4) "Ajay"
  [8]=>
  string(4) "Ajay"
}
like image 100
anubhava Avatar answered Sep 30 '22 17:09

anubhava


You could use this function http://php.net/manual/en/function.array-unique.php to get an array withoutt he duplicate values, then you can use this function http://www.php.net/manual/en/function.array-intersect.php to find the differences, maintaining key association.

like image 24
NightHawk Avatar answered Sep 30 '22 18:09

NightHawk