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 ♥ 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 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 entities.</p>
參考: https://www.php.net/manual/en/function.mb-encode-numericentity.php
相關用法
- PHP mb_encode_numericentity()用法及代碼示例
- PHP mb_encoding_aliases()用法及代碼示例
- PHP mb_ereg()用法及代碼示例
- PHP mb_ereg_search_regs()用法及代碼示例
- PHP mb_ereg_search_init()用法及代碼示例
- PHP mb_ereg_search_pos()用法及代碼示例
- PHP mb_ereg_search_setpos()用法及代碼示例
- PHP mb_ereg_match()用法及代碼示例
- PHP mb_ereg_search()用法及代碼示例
- PHP mb_ereg_replace_callback()用法及代碼示例
- PHP mb_eregi_replace()用法及代碼示例
- PHP mb_ereg_search_getregs()用法及代碼示例
- PHP mb_ereg_replace()用法及代碼示例
- PHP mb_eregi()用法及代碼示例
- 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_detect_order()用法及代碼示例
- PHP mb_strtolower()用法及代碼示例
- PHP mb_strtoupper()用法及代碼示例
- PHP mb_str_split()用法及代碼示例
注:本文由純淨天空篩選整理自neeraj3304大神的英文原創作品 PHP mb_encode_numericentity() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。