htmlspecialchars() 函数把预定义的字符转换为 HTML 实体。
预定义的字符是:
- & (和号)成为 &
- " (双引号)成为 $quot;
- ' (单引号)成为 '
- < (小于)成为 <
- > (大于)成为 >
<?php
$str = "This is some <b>bold</b> text.";
echo htmlspecialchars($str);
?>
上面的代码html输出后:
<!DOCTYPE html>
<html>
<body>
This is some <b>bold</b> text.
</body>
</html>
浏览器输出:
This is some <b>bold</b> text.