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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。