在 PHP 中,stripos()
函数本身是区分大小写的
<?php
$haystack = 'Hello World';
$needle = 'WORLD';
$result = stripos($haystack, $needle);
if ($result !== false) {
echo "Found '$needle' in '$haystack' at position $result.";
} else {
echo "'$needle' not found in '$haystack'.";
}
?>
在这个例子中,我们使用了 stripos()
函数来查找子字符串 $needle
在 $haystack
中的位置。由于 stripos()
是不区分大小写的,因此它会正确地找到子字符串 ‘WORLD’ 在 ‘Hello World’ 中的位置(即 6)。