在Array中查找并替换重复项

时间:2012-11-04 03:01:13

标签: php arrays replace find duplicates

PHP数组问题 我需要使用一些随机值来填充数组,但如果在数组中重复,我的应用程序无法正常工作。所以我需要编写脚本代码,它将找到重复项并用其他一些值替换它们。 好的,例如我有一个数组:

<?PHP
$charset=array(123,78111,0000,123,900,134,00000,900);

function arrayDupFindAndReplace($array){

// if in array are duplicated values then -> Replace duplicates with some other numbers which ones im able to specify.
return $ArrayWithReplacedValues;
}
?>

因此,结果应为具有替换重复值的相同数组。

感谢您的帮助。

4 个答案:

答案 0 :(得分:2)

使用此功能     array_unique()

http://php.net/manual/en/function.array-unique.php

查看更多信息

答案 1 :(得分:2)

您可以跟踪到目前为止所看到的单词并随时更换。

// words we've seen so far
$words_so_far = array();
// for each word, check if we've encountered it so far
//    - if not, add it to our list
//    - if yes, replace it
foreach($charset as $k => $word){
    if(in_array($word, $words_so_far)){
        $charset[$k] = $your_replacement_here;
    }
    else {
        $words_so_far[] = $word;
    }
}

对于稍微优化的解决方案(对于没有那么多重复项的情况),使用array_count_values()(reference here)来计算它显示的次数。

// counts the number of words
$word_count = array_count_values($charset);
// words we've seen so far
$words_so_far = array();
// for each word, check if we've encountered it so far
//    - if not, add it to our list
//    - if yes, replace it
foreach($charset as $k => $word){
    if($word_count[$word] > 1 && in_array($word, $words_so_far)){
        $charset[$k] = $your_replacement_here;
    }
    elseif($word_count[$word] > 1){
        $words_so_far[] = $word;
    }
}

答案 2 :(得分:2)

此处示例如何生成唯一值并替换数组中的重复值

function get_unique_val($val, $arr) {
    if ( in_array($val, $arr) ) {
        $d = 2; // initial prefix 
        preg_match("~_([\d])$~", $val, $matches); // check if value has prefix
        $d = $matches ? (int)$matches[1]+1 : $d;  // increment prefix if exists

        preg_match("~(.*)_[\d]$~", $val, $matches);

        $newval = (in_array($val, $arr)) ? get_unique_val($matches ? $matches[1].'_'.$d : $val.'_'.$d, $arr) : $val;
        return $newval;
    } else {
        return $val;
    }
}

function unique_arr($arr) {
    $_arr = array();
    foreach ( $arr as $k => $v ) {
        $arr[$k] = get_unique_val($v, $_arr);
        $_arr[$k] = $arr[$k];
    }
    unset($_arr);

    return $arr;
}




$ini_arr = array('dd', 'ss', 'ff', 'nn', 'dd', 'ff', 'vv', 'dd');

$res_arr = unique_arr($ini_arr); //array('dd', 'ss', 'ff', 'nn', 'dd_2', 'ff_2', 'vv', 'dd_3');

您可以看到here webbystep.ru

的完整示例

答案 3 :(得分:0)

$uniques = array();
foreach ($charset as $value) 
   $uniques[$value] = true;
$charset = array_flip($uniques);