當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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