mb_eregi()function 是 PHP 中的内置函数,它对具有多字节支持的字符串执行不区分大小写的正则表达式匹配。如果字符串模式匹配,则返回该字符串,否则返回 false。
用法:
mb_eregi(
string $pattern,
string $string,
array &$matches = null
): bool
参数:以下函数具有三个参数,如下所述。
- $pattern: 我们用于匹配多字节字符串的正则表达式模式。
- $string:这是我们搜索模式的字符串。
- $matches: 这是存储从 $string 输入的左括号开始的匹配子字符串的参数。 $matches[1] 将具有从第一个左括号开始的匹配子字符串,$matches[2] 将具有从第二个左括号开始的匹配子字符串,依此类推。
返回值: mb_eregi()执行不区分大小写的正则表达式后,函数返回一个布尔值。如果函数在给定字符串中找到模式,它将返回“true”,否则将返回“false”。
程序1:下面的程序演示了mb_eregi()函数。
PHP
<?php
$string = "Hello, World!";
$pattern = "world";
// Set the multibyte encoding
mb_regex_encoding("UTF-8");
if (mb_eregi($pattern, $string)) {
echo "Pattern found!";
} else {
echo "Pattern not found.";
}
?>
输出
Pattern found!
程序2:下面的程序演示了mb_eregi()函数。
PHP
<?php
$subject = "VDwS0ErZ5K";
if (mb_eregi("^[A-Za-z\s]+$", $subject)) {
echo "Match found!";
} else {
echo "Match not found!";
}
?>
输出
Match not found!
参考: https://www.php.net/manual/en/function.mb-eregi.php
相关用法
- PHP mb_eregi_replace()用法及代码示例
- PHP mb_ereg()用法及代码示例
- PHP mb_ereg_search_regs()用法及代码示例
- PHP mb_ereg_search_init()用法及代码示例
- PHP mb_ereg_search_pos()用法及代码示例
- PHP mb_ereg_search_setpos()用法及代码示例
- PHP mb_ereg_match()用法及代码示例
- PHP mb_ereg_search()用法及代码示例
- PHP mb_ereg_replace_callback()用法及代码示例
- PHP mb_ereg_search_getregs()用法及代码示例
- PHP mb_ereg_replace()用法及代码示例
- PHP mb_encode_numericentity()用法及代码示例
- PHP mb_encoding_aliases()用法及代码示例
- PHP mb_convert_case()用法及代码示例
- PHP mb_check_encoding()用法及代码示例
- PHP mb_strlen()用法及代码示例
- PHP mb_substr_count()用法及代码示例
- PHP mb_substr()用法及代码示例
- PHP mb_substitute_character()用法及代码示例
- PHP mb_chr()用法及代码示例
- PHP mb_detect_order()用法及代码示例
- PHP mb_strtolower()用法及代码示例
- PHP mb_strtoupper()用法及代码示例
- PHP mb_str_split()用法及代码示例
- PHP mb_http_input()用法及代码示例
注:本文由纯净天空筛选整理自neeraj3304大神的英文原创作品 PHP mb_eregi() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。