“Operator statku kosmicznego” Kod odpowiedzi

Operator statku kosmicznego

Return 0 if values on either side are equal
Return 1 if the value on the left is greater
Return -1 if the value on the right is greater
Mirik

Operator statku kosmicznego

function cmp_php5($a, $b) {
    return ($a < $b) ? -1 : (($a >$b) ? 1 : 0);
}

function cmp_php7($a, $b) {
    return $a <=> $b;
}
Disturbed Dugong

Odpowiedzi podobne do “Operator statku kosmicznego”

Pytania podobne do “Operator statku kosmicznego”

Więcej pokrewnych odpowiedzi na “Operator statku kosmicznego” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu