“PHP überprüfen, ob alle Werte im Array gleich sind” Code-Antworten

Überprüfen Sie, ob alle Werte im Array gleich PHP sind

if(count(array_unique($array)) === 1) {
    // all values in $array are the same
} else {
    // at least 1 value in $array is different
}

PHP überprüfen, ob alle Array -Werte gleich sind

// All values are equal
if (count(array_unique($allvalues)) === 1 && end($allvalues) === 'true') {

}

// Check the thing you don't want
if (in_array('false', $allvalues, true)) {

}
SantiBM

PHP überprüfen, ob alle Werte im Array gleich sind

$allvalues = array('true', 'true', 'true');
if (count(array_unique($allvalues)) === 1 && end($allvalues) === 'true') {
}
Lypsoty112

Überprüfen Sie, ob Werte in einem Array -PHP gleich sind

if(count(array_unique($array, SORT_REGULAR)) < count($array)) {
    // $array has duplicates
} else {
    // $array does not have duplicates
}

Ähnliche Antworten wie “PHP überprüfen, ob alle Werte im Array gleich sind”

Fragen ähnlich wie “PHP überprüfen, ob alle Werte im Array gleich sind”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen