mb_ereg_match() 是 PHP 中的内置函数,用于使用正则表达式匹配多字节字符串。
用法:
mb_ereg_match(pattern, string, options = null): bool
Parameters: 该函数有3个参数:
- pattern: 模式参数定义正则表达式
- string:该参数匹配或由正则表达式模式评估。
- option: 该参数定义搜索常规选项。
返回值:该函数返回“true”以将字符串与正则表达式匹配,否则将返回“false”。
示例 1:下面的代码演示了PHPmb_ereg_match()函数。
PHP
<?php
$email = "dachman@gmail.com";
$pattern =
'^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$';
if (mb_ereg_match($pattern, $email)) {
echo "The email address is valid.";
} else {
echo "The email address is invalid.";
}
?>
输出:
The email address is valid.
示例 2:下面的代码是另一个例子mb_ereg_match()PHP 的函数。
PHP
<?php
$name = "GeekforGeeks";
// Match Only Characters
$pattern = '^[a-zA-Z]+$';
if (mb_ereg_match($pattern, $name)) {
echo "The name is valid.";
} else {
echo "The name is invalid.";
}
?>
输出:
The name is valid.
参考: https://www.php.net/manual/en/function.mb-ereg-match.php
相关用法
- PHP mb_ereg_search_regs()用法及代码示例
- PHP mb_ereg_search_init()用法及代码示例
- PHP mb_ereg_search_pos()用法及代码示例
- PHP mb_ereg_search_setpos()用法及代码示例
- PHP mb_ereg_search()用法及代码示例
- PHP mb_ereg_replace_callback()用法及代码示例
- PHP mb_ereg_search_getregs()用法及代码示例
- PHP mb_ereg_replace()用法及代码示例
- PHP mb_ereg()用法及代码示例
- PHP mb_eregi_replace()用法及代码示例
- PHP mb_eregi()用法及代码示例
- 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_ereg_match() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。