mb_stripos()function 是一个内置的不区分大小写的函数,用于查找字符串中第一次出现的子字符串。
用法:
int|false mb_stripos(
string $haystack,
string $needle,
int $offset ,
?string $encoding
);
参数:该函数接受 4 个参数,如下所述。
- $haystack: 该参数是我们检查字符串的主要字符串参数。
- $needle: 该参数是在主字符串中搜索字符串参数。
- $offset: 该参数是可选参数。它用于定义从何处开始搜索字符串$干草堆范围。
- $encoding: 该参数也是可选的。它用于通过使用定义编码mb_internal_encoding()函数。
返回值:该函数返回第一次出现的整数$针在里面$干草堆范围。如果$针中没有找到$干草堆参数,它将返回“false”。
程序1:下面的代码演示了mb_stripos()函数。
PHP
<?php
$string = "Hello World";
$sub = "WORLD";
$result = mb_stripos($string, $sub);
if ($result !== false) {
echo "Substring '$sub' found in '$string'";
} else {
echo "Substring '$sub' not found in '$string'";
}
?>
输出
Substring 'WORLD' found in 'Hello World'
程序2:下面的程序演示了mb_stripos()函数。
PHP
<?php
$string = "This is a test string";
$substring = "ing";
$position = mb_stripos($string, $substring);
// Output the position
echo $position;
?>
输出
18
程序3:下面的程序演示了mb_stripos()函数
PHP
<?php
$string = "She sells seashells by the seashore.";
$substring = "S";
$position = 0;
$occurrences = 0;
while (($position = mb_stripos($string, $substring,
$position)) !== false) {
$occurrences++;
$position = $position + mb_strlen($substring);
}
echo "The substring '$substring' was "+
"found $occurrences times in the string.";
?>
输出
The substring 'S' was found 8 times in the string.
参考: https://www.php.net/manual/en/function.mb-stripos.php
相关用法
- PHP mb_strimwidth()用法及代码示例
- PHP mb_stristr()用法及代码示例
- PHP mb_strlen()用法及代码示例
- PHP mb_strtolower()用法及代码示例
- PHP mb_strtoupper()用法及代码示例
- PHP mb_str_split()用法及代码示例
- PHP mb_strrchr()用法及代码示例
- PHP mb_strripos()用法及代码示例
- PHP mb_strstr()用法及代码示例
- PHP mb_strpos()用法及代码示例
- PHP mb_strrichr()用法及代码示例
- PHP mb_strcut()用法及代码示例
- PHP mb_substr_count()用法及代码示例
- PHP mb_substr()用法及代码示例
- PHP mb_substitute_character()用法及代码示例
- PHP mb_split()用法及代码示例
- PHP mb_scrub()用法及代码示例
- PHP mb_convert_case()用法及代码示例
- PHP mb_check_encoding()用法及代码示例
- PHP mb_chr()用法及代码示例
- PHP mb_detect_order()用法及代码示例
- PHP mb_ereg()用法及代码示例
- PHP mb_http_input()用法及代码示例
- PHP mb_convert_encoding()用法及代码示例
- PHP mb_parse_str()用法及代码示例
注:本文由纯净天空筛选整理自neeraj3304大神的英文原创作品 PHP mb_stripos() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。