当前位置:七道奇文章资讯网站建设网站编程
日期:2010-12-08 09:38:00  来源:本站整理

php常用字符串对比函数[网站编程]

赞助商链接



  本文“php常用字符串对比函数[网站编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

substr_compare() 函数从指定的开始长度对比两个字符串.

该函数返回:

0 - 假如两字符串相等
<0 - 假如 string1 (从开始位置)小于 string2
>0 - 假如 string1 (从开始位置)大于 string2


语法
substr_compare(string1,string2,startpos,length,case)

*/
$str1="hello world"; //定义字符串1
$str2="hello world"; //定义字符串2
$result=substr_compare($str1,$str2,1,10); //履行对比操作
echo $result; //输出后果,1
/*
strnatcasecmp() 函数利用一种"自然"算法来对比两个字符串.

在自然算法中,数字 "2" 小于数字 "10".在计算机排序中,"2" 大于 "10",这是因为 "2" 大于 "10" 的第一个数字.


*/

$str1="hello world"; //定义字符串1
$str2="hello world"; //定义字符串2
$result=strnatcasecmp($str1,$str2); //履行对比操作
echo $result; //输出后果,0

/*
strncasecmp() 函数对比两个字符串.

该函数返回:

0 - 假如两个字符串相等
<0 - 假如 string1 小于 string2
>0 - 假如 string1 大于 string2
语法
strncasecmp(string1,string2,length)
*/
$str1="hello world"; //定义字符串1
$str2="hello world"; //定义字符串2
$result=strncasemp($str1,$str2,7); //履行对比操作
echo $result; //输出后果,0

/*
strncmp() 函数对比两个字符串.

该函数返回:

0 - 假如两个字符串相等
<0 - 假如 string1 小于 string2
>0 - 假如 string1 大于 string2
语法
strncmp(string1,string2,length)
*/

$str1="hello world"; //定义字符串1
$str2="hello world"; //定义字符串2
$result=strncmp($str1,$str2,7); //履行对比操作
echo $result; //输出后果,1

/*
strcoll() 函数对比两个字符串.

该函数返回:

0 - 假如两个字符串相等
<0 - 假如 string1 小于 string2
>0 - 假如 string1 大于 string2
字符串的对比会按照本地设置而改变.(a<a 或 a>a).

语法
strcoll(string1,string2)
*/

$str1="hello world"; //定义字符串1
$str2="hello world"; //定义字符串2
$result=strcoll($str1,$str2); //履行对比操作
echo $result; //输出后果,1
 


  以上是“php常用字符串对比函数[网站编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
  • PHP常常简单记乱的知识
  • php常用字符串对比函数
  • php常用获得 apache信息函数
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .