Home >php教程 >php手册 >关于PHP中strpos的问题

关于PHP中strpos的问题

WBOY
WBOYOriginal
2016-06-13 10:52:301307browse

strpos是用来在一个字符串中查找另外一个或多个字符串
代码:
$str1='ext-gen1226';
$str2='ext';
//echo strpos($str1,str2,0);
if(strpos($str1,str2,0)==false){
 
   echo'AAA';
}else{
    echo'BBB';
}
结果: AAA
按正常应该输出为BBB,这是因为str2在str1的第一个位置,结果strpos返回0,在值上默认为false,而我们用双等号来判断,所以就返回AAA;
$a == $b 等于 TRUE,如果 $a 等于 $b。
$a === $b 全等 TRUE,如果 $a 等于 $b,并且它们的类型也相同。(PHP 4引进 所以改为三个等号来判断即可

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn