當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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