【函数功能】
该函数使用“自然算法”比较两个字符串的大小,不区分大小写。
返回值:
0 - 如果两个字符串相等
<0 - 如果 $str1 小于 $str2
>0 - 如果 $str1 大于 $str2
【函数语法】
strnatcasecmp ($str1, $str2)
【参数说明】
$str1:必需,要比较的第一个字符串。
$str2:必需,要比较的第二个字符串。
【演示程序】
<?php
/**
* strnatcasecmp ($str1, $str2)
* **/
$str1 = "Hello PHP!";
$str2 = "Hello php!";
$rst = strnatcasecmp($str1, $str2);
if($rst > 0){
echo "'$str1' 大于 '$str2'";
}else if($rst == 0){
echo "'$str1' 等于 '$str2'";
}else{
echo "'$str1' 小于 '$str2'";
}
?>
【输出结果】
'Hello PHP!' 等于 'Hello php1234!'
【特别注意】
1.该函数对大小写不感敏。
2.在自然算法中3<10,而在计算机排序中3>10,因为计算机按位排序,3大于10的第一位1.
3.PHP 版本:4+。
【原版定义】
/**
* Case insensitive string comparisons using a "natural order" algorithm
* @link http://www.php.net/manual/en/function.strnatcasecmp.php
* @param str1 string <p>
* The first string.
* </p>
* @param str2 string <p>
* The second string.
* </p>
* @return int Similar to other string comparison functions, this one returns < 0 if
* str1 is less than str2 >
* 0 if str1 is greater than
* str2, and 0 if they are equal.
*/
转载请注明出处:php1234.cn ,原文地址:http://www.php1234.cn/a/functions/2016/1123/138.html