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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。