mb_chr()函數是PHP中的內置函數,用於返回編碼為指定編碼的字符unicode點值。
句法:
string|false mb_chr(int $codepoint, string $encoding = null)
參數:該函數接受兩個參數,如下所述:
- $codepoint:該參數保存 unicode 代碼點值。
- $encoding:該參數說明了字符編碼。如果該參數值被省略或為空,則將使用內部字符編碼值。
返回值:該參數返回一個包含所請求字符的字符串。它返回指定的編碼或失敗時返回 false。
示例 1:下麵的代碼演示了PHPmb_chr()方法。
PHP
<?php
// Create an array with the character
// unicode values
$char_code = [71, 101, 101, 107, 115];
// Return the character for each
// unicode array values
foreach ($char_code as $index) {
print_r(mb_chr($index, 'ASCII'));
}
?>
輸出
Geeks
示例 2:下麵的代碼是PHP的另一個例子mb_chr()方法。
PHP
<?php
// Create an array with character
// unicode values
$char_code = [0x71, 0x101, 0x104, 0x107, 0x115];
// Return the character for each
// unicode array values
foreach ($char_code as $index) {
print_r(mb_chr($index, 'UTF-8'));
}
?>
輸出
qāĄćĕ
參考: https://www.php.net/manual/en/function.mb-chr.php
相關用法
- PHP mb_chr()用法及代碼示例
- PHP mb_check_encoding()用法及代碼示例
- PHP mb_convert_case()用法及代碼示例
- PHP mb_convert_encoding()用法及代碼示例
- PHP mb_convert_variables()用法及代碼示例
- PHP mb_convert_kana()用法及代碼示例
- PHP mb_strlen()用法及代碼示例
- PHP mb_substr_count()用法及代碼示例
- PHP mb_substr()用法及代碼示例
- PHP mb_substitute_character()用法及代碼示例
- PHP mb_detect_order()用法及代碼示例
- PHP mb_strtolower()用法及代碼示例
- PHP mb_strtoupper()用法及代碼示例
- PHP mb_str_split()用法及代碼示例
- PHP mb_ereg()用法及代碼示例
- PHP mb_http_input()用法及代碼示例
- 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()用法及代碼示例
注:本文由純淨天空篩選整理自vkash8574大神的英文原創作品 PHP mb_chr() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。