在 PHP 中,stristr
函数本身是大小写敏感的。如果你想要进行不区分大小写的搜索,可以使用 stripos
函数。这是一个例子:
<?php
$haystack = "Hello World!";
$needle = "WORLD";
// 使用 stripos 进行不区分大小写的搜索
$result = stripos($haystack, $needle);
if ($result !== false) {
echo "Found '$needle' in '$haystack' at position " . ($result + 1) . ".";
} else {
echo "'$needle' not found in '$haystack'.";
}
?>
在这个例子中,我们使用 stripos
函数来查找 $haystack
中不区分大小写的 $needle
。如果找到了,我们输出结果;否则,我们输出未找到的消息。