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