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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。