目录

PHP htmlspecialchars_decode() 函数

❮ PHP 字符串参考

示例

将预定义的 HTML 实体 "<"(小于)和 ">"(大于)转换为字符:

<?php
$str = "This is some &lt;b&gt;bold&lt;/b&gt; text.";
echo htmlspecialchars_decode($str);
?>

上述代码的 HTML 输出将是(查看源代码):

<!DOCTYPE html>
<html>
<body>
This is some <b>bold</b> text.
</body>
</html>

上述代码的浏览器输出将是:

This is some bold text.


定义和用法

htmlspecialchars_decode() 函数将一些预定义的 HTML 实体转换为字符。

将被解码的 HTML 实体有:

  • &amp;变成 &(与号)
  • &quot;变成 "(双引号)
  • &#039;变成 ' (单引号)
  • &lt;变成<(小于)
  • &gt;变为>(大于)

htmlspecialchars_decode() 函数与htmlspecialchars()


语法

htmlspecialchars_decode( string,flags)

参数值

Parameter Description
string Required. Specifies the string to decode
flags Optional. Specifies how to handle quotes and which document type to use.

The available quote styles are:

  • ENT_COMPAT - Default. Decodes only double quotes
  • ENT_QUOTES - Decodes double and single quotes
  • ENT_NOQUOTES - Does not decode any quotes

Additional flags for specifying the used doctype:

  • ENT_HTML401 - Default. Handle code as HTML 4.01
  • ENT_HTML5 - Handle code as HTML 5
  • ENT_XML1 - Handle code as XML 1
  • ENT_XHTML - Handle code as XHTML


技术细节

返回值: 返回转换后的字符串
PHP 版本: 5.1.0+
变更日志: PHP 5.4 - 添加了 ENT_HTML401、ENT_HTML5、ENT_XML1 和 ENT_XHTML。

更多示例

示例

将一些预定义的 HTML 实体转换为字符:

<?php
$str = "Jane &amp; &#039;Tarzan&#039;";
echo htmlspecialchars_decode($str, ENT_COMPAT); // Will only convert double quotes
echo "<br>";
echo htmlspecialchars_decode($str, ENT_QUOTES); // Converts double and single quotes
echo "<br>";
echo htmlspecialchars_decode($str, ENT_NOQUOTES); // Does not convert any quotes
?>

上述代码的 HTML 输出将是(查看源代码):

<!DOCTYPE html>
<html>
<body>
Jane & &#039;Tarzan&#039;<br>
Jane & 'Tarzan'<br>
Jane & &#039;Tarzan&#039;
</body>
</html>

上述代码的浏览器输出将是:

Jane & 'Tarzan'
Jane & 'Tarzan'
Jane & 'Tarzan'

示例

将预定义的 HTML 实体转换为双引号:

<?php
$str = 'I love "PHP".';
echo htmlspecialchars_decode($str, ENT_QUOTES); // Converts double and single quotes
?>

上述代码的 HTML 输出将是(查看源代码):

<!DOCTYPE html>
<html>
<body>
I love "PHP".
</body>
</html>

上述代码的浏览器输出将是:

I love "PHP".


❮ PHP 字符串参考