将预定义的 HTML 实体 "<"(小于)和 ">"(大于)转换为字符:
<?php
$str = "This is some <b>bold</b> 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 实体有:
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:
Additional flags for specifying the used doctype:
|
返回值: | 返回转换后的字符串 |
---|---|
PHP 版本: | 5.1.0+ |
变更日志: | PHP 5.4 - 添加了 ENT_HTML401、ENT_HTML5、ENT_XML1 和 ENT_XHTML。 |
将一些预定义的 HTML 实体转换为字符:
<?php
$str = "Jane & 'Tarzan'";
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 & 'Tarzan'<br>
Jane & 'Tarzan'<br>
Jane & 'Tarzan'
</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".
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!