stripos函数是用来查找字符串在另一个字符串中第一次出现的位置(不区分大小写),如果找到了则返回该位置的索引值,如果没有找到则返回false。
示例代码:
$string = "Hello World";
$substring = "world";
$position = stripos($string, $substring);
if($position !== false) {
echo "字符串 '$substring' 在 '$string' 中的位置是:$position";
} else {
echo "在 '$string' 中未找到字符串 '$substring'";
}
输出结果为:字符串 ‘world’ 在 ‘Hello World’ 中的位置是:6