Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

spaceship operator 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
 
PREVIOUS NEXT
Tagged: #spaceship #operator #php
ADD COMMENT
Topic
Name
9+6 =