3v4l.org

run code in 300+ PHP versions simultaneously
<?php say("strcmp(str1, str2): Returns < 0 if str1 is less than str2;\n", " > 0 if str1 is greater than str2, and 0 if they are equal.\n", " http://php.net/manual/en/function.strcmp.php"); say( "basic test"); string_lt('a', 'z'); say("numeric strings"); string_lt('22', '123'); say("non-numeric strings"); string_lt('bb', 'abc'); say("non-numeric strings with numbers in"); say("should be the same as 'numeric strings' if strcmp() really does string comparison"); string_lt('22x', '123x'); say("numbers"); string_lt(22, 123); function string_lt($str1, $str2) { # < operator if ($str1 < $str2) { say("$str1 < $str2"); } if ($str2 < $str1) { say("$str2 < $str1"); } # good old strcmp() if (strcmp($str1, $str2) < 0) { say("strcmp says: $str1 < $str2"); } if (strcmp($str2, $str1) < 0) { say("strcmp says: $str2 < $str1"); } } function say() { $msgs = func_get_args(); foreach ($msgs as $msg) { echo $msg; } echo "\n"; }
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
strcmp(str1, str2): Returns < 0 if str1 is less than str2; > 0 if str1 is greater than str2, and 0 if they are equal. http://php.net/manual/en/function.strcmp.php basic test a < z strcmp says: a < z numeric strings 22 < 123 strcmp says: 123 < 22 non-numeric strings abc < bb strcmp says: abc < bb non-numeric strings with numbers in should be the same as 'numeric strings' if strcmp() really does string comparison 123x < 22x strcmp says: 123x < 22x numbers 22 < 123 strcmp says: 123 < 22

preferences:
248.72 ms | 406 KiB | 464 Q