PHP html_entity_decode() 函數(shù)
PHP html_entity_decode() 函數(shù)
實例
把 HTML 實體轉(zhuǎn)換為字符:
<?php
$str = "<© W3CSçh°°¦§>";
echo html_entity_decode($str);
?>
$str = "<© W3CSçh°°¦§>";
echo html_entity_decode($str);
?>
上面代碼的 HTML 輸出如下(查看源代碼):
<!DOCTYPE html>
<html>
<body>
<? W3CS?h°°|§>
</body>
</html>
<html>
<body>
<? W3CS?h°°|§>
</body>
</html>
上面代碼的瀏覽器輸出如下:
<? W3CS?h°°|§>
定義和用法
html_entity_decode() 函數(shù)把 HTML 實體轉(zhuǎn)換為字符。
html_entity_decode() 函數(shù)是 htmlentities() 函數(shù)的反函數(shù)。
語法
html_entity_decode(string,flags,character-set)
參數(shù) | 描述 |
---|---|
string | 必需。規(guī)定要解碼的字符串。 |
flags | 可選。規(guī)定如何處理引號以及使用哪種文檔類型。 可用的引號類型:
規(guī)定使用的文檔類型的附加 flags:
|
character-set | 可選。一個規(guī)定了要使用的字符集的字符串。 允許的值:
注釋:在 PHP 5.4 之前的版本,無法被識別的字符集將被忽略并由 ISO-8859-1 替代。自 PHP 5.4 起,無法被識別的字符集將被忽略并由 UTF-8 替代。 |
技術(shù)細(xì)節(jié)
返回值: | 返回已轉(zhuǎn)換的字符串。 |
---|---|
PHP 版本: | 4.3.0+ |
更新日志: | 在 PHP 5 中,character-set 參數(shù)的默認(rèn)值改為 UTF-8。 在 PHP 5.4 中,新增了用于規(guī)定使用的文檔類型的附加 flags:ENT_HTML401、ENT_HTML5、ENT_XML1 和 ENT_XHTML。 在 PHP 5.0 中,新增了對多字節(jié)編碼的支持。 |
更多實例
實例 1
把一些 HTML 實體轉(zhuǎn)換為字符:
<?php
$str = "Jane & 'Tarzan'";
echo html_entity_decode($str, ENT_COMPAT); // Will only convert double quotes
echo "<br>";
echo html_entity_decode($str, ENT_QUOTES); // Converts double and single quotes
echo "<br>";
echo html_entity_decode($str, ENT_NOQUOTES); // Does not convert any quotes
?>
$str = "Jane & 'Tarzan'";
echo html_entity_decode($str, ENT_COMPAT); // Will only convert double quotes
echo "<br>";
echo html_entity_decode($str, ENT_QUOTES); // Converts double and single quotes
echo "<br>";
echo html_entity_decode($str, ENT_NOQUOTES); // Does not convert any quotes
?>
上面代碼的 HTML 輸出如下(查看源代碼):
<!DOCTYPE html>
<html>
<body>
Jane & 'Tarzan'<br>
Jane & 'Tarzan'<br>
Jane & 'Tarzan'
</body>
</html>
<html>
<body>
Jane & 'Tarzan'<br>
Jane & 'Tarzan'<br>
Jane & 'Tarzan'
</body>
</html>
上面代碼的瀏覽器輸出如下:
Jane & 'Tarzan'
Jane & 'Tarzan'
Jane & 'Tarzan'
Jane & 'Tarzan'
Jane & 'Tarzan'
實例 2
通過使用西歐字符集,把一些 HTML 實體轉(zhuǎn)換為字符:
<?php
$str = "My name is Øyvind Åsane. I'm Norwegian.";
echo html_entity_decode($str, ENT_QUOTES, "ISO-8859-1");
?>
$str = "My name is Øyvind Åsane. I'm Norwegian.";
echo html_entity_decode($str, ENT_QUOTES, "ISO-8859-1");
?>
The HTML output of the code above will be (View Source):
<!DOCTYPE html>
<html>
<body>
My name is ?yvind ?sane. I'm Norwegian.
</body>
</html>
<html>
<body>
My name is ?yvind ?sane. I'm Norwegian.
</body>
</html>
上面代碼的瀏覽器輸出如下:
My name is ?yvind ?sane. I'm Norwegian.

相關(guān)文章
- PHP 簡介
- PHP 變量
- PHP date() 函數(shù)
- PHP Cookie
- PHP Secure E-mails
- PHP 過濾器
- PHP array_diff() 函數(shù)
- PHP array_diff_uassoc() 函數(shù)
- PHP array_flip() 函數(shù)
- PHP array_intersect() 函數(shù)
- PHP array_intersect_assoc() 函數(shù)
- PHP array_keys() 函數(shù)
- PHP array_map() 函數(shù)
- PHP array_merge() 函數(shù)
- PHP array_pop() 函數(shù)
- PHP array_splice() 函數(shù)
- PHP array_uintersect_assoc() 函數(shù)
- PHP end() 函數(shù)
- PHP uksort() 函數(shù)
- PHP Libxml 函數(shù)