在 PHP 中,stristr
函數(shù)本身是大小寫敏感的。如果你想要進(jìn)行不區(qū)分大小寫的搜索,可以使用 stripos
函數(shù)。這是一個(gè)例子:
<?php
$haystack = "Hello World!";
$needle = "WORLD";
// 使用 stripos 進(jìn)行不區(qū)分大小寫的搜索
$result = stripos($haystack, $needle);
if ($result !== false) {
echo "Found '$needle' in '$haystack' at position " . ($result + 1) . ".";
} else {
echo "'$needle' not found in '$haystack'.";
}
?>
在這個(gè)例子中,我們使用 stripos
函數(shù)來查找 $haystack
中不區(qū)分大小寫的 $needle
。如果找到了,我們輸出結(jié)果;否則,我們輸出未找到的消息。