PHP中可以实现字符串对比的函数有很多,这里主要说说strpos()函数。
PHP手册对strpos()的描述:
定义和用法
strpos() 函数返回字符串在另一个字符串中第一次出现的位置。
如果没有找到该字符串,则返回false。
语法
strpos(string,find,start)
参数 描述
string 必需。规定被搜索的字符串。
find 必需。规定要查找的字符。
start 可选。规定开始搜索的位置。
主要容易引起问题的地方在于,如果$find字符串在$string的第一位时函数会返回0,在作判断的时候如果像平时一样使用==的话,就会忽略掉第一位就像等的字符串,所以在使用strpos()函数做字符串对比的时候,需要使用===来作为逻辑运算符!
例:
01
知识补充
运算符 说明
== 等于,逻辑算符。自动转换参与运算量的数据类型
=== 恒等于,逻辑算符。不转换数据类型
<<< 管道,引入自c++。将被其后标记括起来的内容视为一个字符串处理,其中的变量会被展开
<< 左移,位操作算符
>> 右移,位操作算符
首先应该知道 strpos 函数可能返回布尔值 FALSE,但也可能返回一个与 FALSE 等值的非布尔值,例如 0 或者””。我们应使用 === 运算符来测试本函数的返回值。
<?php /* 判断字符串是否存在的函数 */ function strexists($haystack, $needle) { return !(strpos($haystack, $needle) === FALSE);//注意这里的"===" } /* Test */ $mystring = 'abc'; $findme = 'a'; $pos = strpos($mystring, $findme); // Note our use of ===. Simply == would not work as expected // because the position of 'a' was the 0th (first) character. // 简单的使用 "==" 号是不会起作用的,需要使用 "===",因为 a 第一次出现的位置为 0 if ($pos === false) { echo "The string '$findme' was not found in the string '$mystring'"; } else { echo "The string '$findme' was found in the string '$mystring'"; echo " and exists at position $pos"; } // We can search for the character, ignoring anything before the offset // 在搜索字符的时候可以使用参数 offset 来指定偏移量 $newstring = 'abcdef abcdef'; $pos = strpos($newstring, 'a', 1); // $pos = 7, not 0 ?>