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


PHP mb_encode_numericentity()用法及代碼示例


mb_encode_numercentity()function 是 PHP 中的內置函數,用於使用十進製或十六進製表示形式對 HTML 實體進行編碼。

用法:

string mb_encode_numericentity( 
string $string,
array $map,
string $encoding,
bool $hex
)

Parameters: 該函數接受四個參數,如下所述。

  • $string: 要編碼的輸入字符串。
  • $map: 設置要編碼的 Unicode 字符範圍的數組。該數組的形式為數組(開始、結束、偏移量、掩碼)。
  • $encoding:輸入和輸出字符串的字符編碼。
  • $hex: 設置要編碼的 Unicode 字符範圍的數組。該數組的形式為數組(開始、結束、偏移量、掩碼)。

返回值: mb_encode_numericentity()函數返回編碼字符串,如果發生錯誤則返回“false”。

PHP mb_encode_numericentity() 函數示例

示例 1:下麵的程序演示了mb_decode_numercentity()函數。

PHP


<?php    
$text = "I ♥ PHP!";
// Encode special characters as HTML entities
$encodedText = mb_encode_numericentity($text, 
    [0x80, 0xffff, 0, 0xffff], 'UTF-8');
echo $encodedText;  
?>
輸出
I &#9829; PHP!

示例 2:下麵的程序演示了mb_decode_numercentity()函數。

PHP


<?php
$text = "Hello, <b>World</b>";
// Array of tags to check for
$tagsToEncode = ['<b>', '<strong>', '<i>', '<em>'];
// Encode special characters as HTML entities 
// if the string contains any specified tags
foreach ($tagsToEncode as $tag) {
    if (strpos($text, $tag) !== false) {
        $encodedText = mb_encode_numericentity( $text, 
            [0x80, 0xffff, 0, 0xffff], 'UTF-8');
        break;
    } else {
        $encodedText = $text;
    }
}
echo $encodedText;
?>
輸出
Hello, <b>World</b>

示例 3:下麵的程序演示了mb_decode_numercentity()函數。

PHP


<?php
$userContent = "<p>This is a <strong>test</strong> article with some &nbsp; entities.</p>";
// Function to decode HTML entities
function decodeUserContent($content) {
    return mb_decode_numericentity($content, array(0x0, 0x10FFFF, 0, 'UTF-8'));
}
// Display the user-submitted content safely
echo decodeUserContent($userContent);
?>

輸出

<p>This is a <strong>test</strong> article with some &nbsp; entities.</p>                                                                                                           

參考: https://www.php.net/manual/en/function.mb-encode-numericentity.php



相關用法


注:本文由純淨天空篩選整理自neeraj3304大神的英文原創作品 PHP mb_encode_numericentity() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。