stripos函数用于在字符串中查找一个子串的第一次出现的位置,不区分大小写。它的语法是:
int stripos ( string $haystack , mixed $needle [, int $offset = 0 ] )
参数说明:
返回值:
示例:
$str = "Hello World!";
$pos = stripos($str, "world");
if ($pos === false) {
echo "未找到";
} else {
echo "找到了,位置是:" . $pos;
}
输出结果为:
找到了,位置是:6
注意:stripos函数区分返回值0和false,因此在判断是否找到子串时,需要使用全等于(===)进行比较。