mb_regex_encoding() 是 PHP 中的内置函数,用于设置和检索多字节正则表达式的编码。
用法:
mb_regex_encoding(?string $encoding = null): string|bool
Parameters: 该函数仅接受一个参数,如下所述。
- $编码:该参数定义您将在此程序中使用哪种编码。如果省略编码,它将使用内部编码。
返回值:返回类型为mb_regex_encoding()我混合,这意味着该函数可以根据使用它的上下文返回不同类型的值。如果你调用mb_regex_encoding()不带任何参数,它将以字符串形式返回当前字符编码。
示例 1:以下程序演示了mb_regex_encoding() 函数。
PHP
<?php
mb_regex_encoding('ISO-8859-1');
// Search a string using a regular expression
// with ISO-8859-1 characters
$string = 'The café is closed.';
if (mb_ereg('^The café is closed.$', $string)) {
echo 'The string matches the regular expression!';
} else {
echo 'The string does not match the regular expression.';
}
?>
输出:
The string matches the regular expression!
示例 2:下面的程序演示了mb_regex_encoding()函数。
PHP
<?php
mb_regex_encoding('UTF-8');
$success = mb_regex_encoding('ISO-8859-1');
if ($success) {
echo 'New encoding set successfully.';
} else {
echo 'Failed to set new encoding.';
}
?>
输出:
New encoding set successfully.
参考: https://www.php.net/manual/en/function.mb-regex-encoding.php
相关用法
- 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_ereg()用法及代码示例
- PHP mb_http_input()用法及代码示例
- PHP mb_convert_encoding()用法及代码示例
- PHP mb_parse_str()用法及代码示例
- PHP mb_encode_numericentity()用法及代码示例
- PHP mb_encoding_aliases()用法及代码示例
- PHP mb_strrchr()用法及代码示例
- PHP mb_strimwidth()用法及代码示例
- PHP mb_ereg_search_regs()用法及代码示例
- PHP mb_ereg_search_init()用法及代码示例
- PHP mb_stristr()用法及代码示例
- PHP mb_ereg_search_pos()用法及代码示例
- PHP mb_split()用法及代码示例
- PHP mb_ereg_search_setpos()用法及代码示例
注:本文由纯净天空筛选整理自neeraj3304大神的英文原创作品 PHP mb_regex_encoding() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。