PHP的strlen()
函數(shù)用于獲取字符串的長度,而不是用于比較字符串。要比較兩個字符串是否相等,您可以使用==
或===
操作符。
例如:
$str1 = "Hello, world!";
$str2 = "Hello, world!";
$str3 = "Hello, PHP!";
if ($str1 == $str2) {
echo "str1 and str2 are equal.";
} else {
echo "str1 and str2 are not equal.";
}
if ($str1 === $str2) {
echo "str1 and str2 are identical.";
} else {
echo "str1 and str2 are not identical.";
}
if ($str1 == $str3) {
echo "str1 and str3 are equal.";
} else {
echo "str1 and str3 are not equal.";
}
在這個例子中,$str1
和$str2
是相等的,但$str1
和$str3
是不相等的。===
操作符檢查兩個字符串是否具有相同的長度和內(nèi)容,所以在這種情況下,$str1
和$str3
既不相等也不相同。