htmlspecialchars()和htmlspecialchars_decode()

htmlspecialchars()

定义和用法
htmlspecialchars() 函数把一些预定义的字符转换为 HTML 实体。

预定义的字符是:

1
2
3
4
5
& (和号)成为 &  
" (双引号)成为 "
' (单引号)成为 '
< (小于)成为 &lt;
\> (大于)成为 &gt;

实例

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

1
2
3
4
<?php  
$str = "This is some <b>bold</b> text.";
echo htmlspecialchars($str);
?>

上面代码的 HTML 输出如下(查看源代码):
This is some &lt;b&gt;bold&lt;/b&gt; text.

上面代码的浏览器输出如下:
This is some <b>bold</b> text.

htmlspecialchars_decode()

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

实例

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

1
2
3
4
<?php  
$str = "This is some <b>bold</b> text.";
echo htmlspecialchars_decode($str);
?>

上面代码的 HTML 输出如下(查看源代码):
This is some <b>bold</b> text.

上面代码的浏览器输出如下:
This is some bold text.