strcmp函數用于比較兩個字符串,它會返回一個整數值,表示兩個字符串的大小關系。如果第一個字符串小于第二個字符串,則返回一個負數;如果第一個字符串大于第二個字符串,則返回一個正數;如果兩個字符串相等,則返回0。
$string1 = "hello";
$string2 = "world";
$result = strcmp($string1, $string2);
if($result < 0) {
echo "String 1 is less than String 2";
} elseif($result > 0) {
echo "String 1 is greater than String 2";
} else {
echo "String 1 is equal to String 2";
}