温馨提示×

stripos php 如何忽略大小写

PHP
小樊
81
2024-11-28 18:40:13
栏目: 编程语言

在 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)。

0