mb_stristr() 是 PHP 中的内置函数,用于获取一个字符串在另一个字符串中的第一次出现。它将检查不区分大小写。
用法:
mb_stristr( $haystack, $needle, $before_needle, $encoding = null ): string|false
参数:
该函数接受 4 个参数,如下所述:
- $干草堆:这是我们搜索第一次出现的字符串的字符串参数。
- $针:这是我们要在其中搜索的子字符串$干草堆范围。
- $before_needle:这是可选参数,决定是否在之后或之前返回 haystack$针发生。如果此参数是“true”,它将返回到$needle 字符串第一次出现的位置(不包括needle)。如果该参数设置为“false”,则会从开头返回$针到$针结尾。
- $编码:这是可选参数,指定字符编码$干草堆和$针参数。如果未提供编码,它将使用所使用的字符编码。
返回值:
该函数返回的部分$干草堆如果针被发现在$干草堆,否则,将返回“错误的”。
程序1:下面的程序演示了mb_stristr()函数。
PHP
<?php
$string = "Hello World";
$sub = "WORLD";
$result = mb_stristr($string, $sub);
echo $result;
?>
输出
World
程序2:下面的程序演示了mb_stristr()函数。
PHP
<?php
$string = "I love PHP";
$sub = "PYTHON";
$result = mb_stristr($string, $sub);
var_dump($result);
?>
输出
bool(false)
程序3::下面的程序演示了mb_stristr()函数。
PHP
<?php
$string = "Hello World";
$sub = "WORLD";
$result = mb_stristr($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'
参考:https://www.php.net/manual/en/function.mb-stristr.php
相关用法
- PHP mb_strimwidth()用法及代码示例
- PHP mb_stripos()用法及代码示例
- 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_stristr() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。