<?php $x = 0; $y = 1; if ($x <=> $y) { echo "TRUE\n\n"; } else { echo "FALSE\n\n"; } $x = "Carrot"; $y = "Carrot Juice"; echo $x <=> $y; if ($x <=> $y) { echo "TRUE\n\n"; } else { echo "FALSE\n\n"; } $x = "Carrot Juice"; $y = "Carrot"; echo $x <=> $y; if ($x <=> $y) { echo "TRUE\n\n"; } else { echo "FALSE\n\n"; } $x = array("carrot", "juice"); $y = "carrot juice"; if ($x <=> $y) { echo "TRUE\n\n"; } else { echo "FALSE\n\n"; }
You have javascript disabled. You will not be able to edit any code.