PHP

php stristr 大小写敏感怎样设置

小樊
82
2024-11-19 08:11:34
栏目: 编程语言

在 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。如果找到了,我们输出结果;否则,我们输出未找到的消息。

0
看了该问题的人还看了