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