当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP mb_stripos()用法及代码示例


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



相关用法


注:本文由纯净天空筛选整理自neeraj3304大神的英文原创作品 PHP mb_stripos() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。