删除重复的单词(不区分大小写)

Remove duplicate words (case-insensitive)

$text = "Wyse Dell WYSE";

$words = array_unique(explode(' ',$text));
$words = implode(' ',$words);

echo $words;

// output: Wyse dell WYSE

此解决方案区分大小写并立即重复单词,但并非总是如上例所示。我需要它来进行不区分大小写的搜索。

尝试这样的事情。

$text = "Wyse Dell WYSE";

$words = array_unique(explode(' ',strtolower($text)));
$words = implode(' ',$words);

echo $words;
$text = "Wyse Dell WYSE";

$words = array_iunique(explode(' ',$text));
$words = implode(' ',$words);

echo $words;



function array_iunique($array) {
    return array_intersect_key(
        $array,
        array_unique(array_map("StrToLower",$array))
    );
}

来源:case-insensitive array_unique

  1. array_mapstrtolower 应用于所有值,return 是一个所有值都小写的数组,
  2. array_unique 删除 array_map
  3. 的 return 中的所有重复项
  4. array_intersect_key returns 包含 $array 的所有条目的数组,这些条目的键存在于 array_unique
  5. 的 return 中
  6. 这将仅阻止单词的首次存在并删除其他单词

更多关于功能的细节:

array_map: http://php.net/manual/en/function.array-map.php
array_intersect_key: http://php.net/manual/en/function.array-intersect-key.php
strtolower: http://php.net/strtolower