Answers:
更换<
用<
和>
用>
。
在PHP中,使用htmlspecialchars()函数转义<
和>
。
htmlspecialchars('<strong>something</strong>')
您应该使用htmlspecialchars
。它替换如下字符:
&
"
当未设置ENT_NOQUOTES时,将变为“”(双引号)。'
仅当设置了ENT_QUOTES时,“'”(单引号)才变为。<
>
要在浏览器中显示HTML标签,请在输出中用<xmp>和</ xmp>标签包围
<xmp
>现在已经过时了,不仅仅是不推荐使用。不要使用它。
当回显到浏览器时,您可以使用htmlentities,这将显示标签而不是html对其进行解释。
看到这里http://uk3.php.net/manual/en/function.htmlentities.php
例:
echo htmlentities("<strong>Look just like this line - so then know how to type it</strong>");
输出:
<strong>Look just like this line - so then know how to type it</strong>
使用htmlentities()转换字符,否则将显示为HTML。
本机JavaScript方法-
('<strong>Look just like ...</strong>').replace(/</ig, '<').replace(/>/ig, '>');
请享用!