当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP mb_decode_numericentity()用法及代码示例


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

参考:https://www.php.net/manual/en/function.mb-decode-numericentity.php#refsect1-function.mb-decode-numericentity-description



相关用法


注:本文由纯净天空筛选整理自neeraj3304大神的英文原创作品 PHP mb_decode_numericentity() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。