php mb_stripos 能否处理符号

PHP
233
2024/12/6 3:22:41
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

是的,mb_stripos 函数可以处理符号

例如,如果你想在一个字符串中查找 “example” 这个词,无论它是大写还是小写,你可以这样做:

$string = "This is an Example text with ExAmple words.";
$search = "example";
$pos = mb_stripos($string, $search);

if ($pos !== false) {
    echo "Found at position: " . $pos;
} else {
    echo "Not found";
}

在这个例子中,mb_stripos 会返回 “example” 第一次出现的位置(从 0 开始计数),即 14。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: php中realpath的用法是什么