strcmp($str1, $str2)strcasecmp($str1, $str2)
strnatcmp($str1, $str2)strnatcasecmp($str1, $str2)
<?php $number_1 = 42; $number_2 = +72; $number_3 = -13; $number_4 = -(-39); $number_5 = --39; ?>
<?php $ max_int = PHP_INT_MAX; $min_int = PHP_INT_MIN; ?>
<?php $octal_1 = 0251; // Must begin with 0 $octal_2 = -0262; ?>
<?php $hex_1 = 0X5F; // Must begin with 0x or 0X $hex_2 = 0x4a3b; // Upper and lower case letters allowed ?>