“PHP KnowW, wenn Array doppelte Werte hat” Code-Antworten

Holen Sie sich den doppelten Wert von Array PHP

$arr = array(1, 4, 6, 1, 8, 9, 4, 6);

$unique = array_unique($arr);

$duplicates = array_diff_assoc($arr, $unique);

print_r($duplicates);
Array ( [3] => 1 [6] => 4 [7] => 6 )
Easy Elephant

Überprüfen Sie die doppelten Daten im Array -PHP

$counts = array_count_values($array);
            $duplicate_title  = array_filter($array, function ($value) use ($counts) {
                return $counts[$value] > 1;
            });
Easy Elephant

PHP KnowW, wenn Array doppelte Werte hat

if (count($array) === count(array_unique($array))) {
		//values are unique
}
Bright Bird

Ähnliche Antworten wie “PHP KnowW, wenn Array doppelte Werte hat”

Fragen ähnlich wie “PHP KnowW, wenn Array doppelte Werte hat”

Weitere verwandte Antworten zu “PHP KnowW, wenn Array doppelte Werte hat” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen