mb_decode_numericentity() 是 PHP 中的内置函数,其中 HTML 中数字字符串的引用将被解码为字符。
用法:
mb_decode_numericentity(string $string, array $map, ?string $encoding = null): string
参数:该函数有四个参数:
- $string:该参数指定要解码的字符串。
- $map: 要转换的代码区域由映射表示,它是一个数组。
- $encoding: 编码参数表示字符编码。如果省略或为空,则将使用内部字符编码值。
返回值:该函数返回解码后的字符串。
示例 1:下面的代码演示了mb_decode_numericentity()函数。
PHP
<?php
// Define a string with numeric entities
$str = 'ABC';
// Decode the string
$decoded_str = mb_decode_numericentity(
$str, array(0x0, 0x10000, 0, 0xfffff), 'UTF-8');
// Display the decoded string
echo $decoded_str;
?>
输出:
ABC
示例 2:下面的代码演示了mb_decode_numericentity()函数。
PHP
<?php
// Define a string with numeric entities
$str = 'Hello World';
// Decode the string
$decoded_str = mb_decode_numericentity(
$str, array(0x0, 0x10000, 0, 0xfffff), 'UTF-8');
// Display the decoded string
echo $decoded_str;
?>
输出:
Hello World
相关用法
- PHP mb_decode_mimeheader()用法及代码示例
- PHP mb_detect_order()用法及代码示例
- PHP mb_detect_encoding()用法及代码示例
- 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_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()用法及代码示例
注:本文由纯净天空筛选整理自neeraj3304大神的英文原创作品 PHP mb_decode_numericentity() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。