删除数组中的值,如果找到它的重复项

时间:2013-01-28 09:03:29

标签: php arrays duplicates

我有一个像这样的数组

$callerid = Array ( [1] => <409> [2] => <3214> [3] => <409> [4] => <5674> ) 

我希望输出像

Array ( [1] => <3214> [2] => <5674> )

也就是说,如果在数组中发现重复,我想删除值的出现。

如何实现这个目标?

2 个答案:

答案 0 :(得分:3)

不保留密钥,但返回正确的值(即出现次数为1的那些)

$callerid = array(1 => 409, 2 => 3214, 3 => 409, 4 => 5674);
$calleridCounts = array_count_values($callerid);
$result = array_keys(
    array_intersect($calleridCounts,array(1))
);
var_dump($result);

答案 1 :(得分:0)

<?php
$string = Array ( 409,3214,409,5674 ) ;
print_r($string);
foreach($string as $vals){
   $match  = array_keys($string, $vals);
   if(count($match) > 1){
      foreach($match as $ky){
        unset($string[$ky]);
      }
   }

}
print_r($string);
?>