“Operator statku kosmicznego PHP” Kod odpowiedzi

Operator statku kosmicznego PHP

// Integers
print (1 <=> 1); // 0
print (1 <=> 2); // -1
print (2 <=> 1); // 1
// Floats
print (1.5 <=> 1.5); // 0
print (1.5 <=> 2.5); // -1
print (2.5 <=> 1.5); // 1
// Strings
print ("a" <=> "a"); // 0
print ("a" <=> "b"); // -1
print ("b" <=> "a"); // 1
kinjal suryavanshi

Operator statku kosmicznego PHP

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

Odpowiedzi podobne do “Operator statku kosmicznego PHP”

Pytania podobne do “Operator statku kosmicznego PHP”

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

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

Przeglądaj inne języki kodu