2
4

5 回答 5

3
于 2013-04-11T19:22:30.483 回答
3

使用htmlentities将起作用:

<?php echo 'Allowable tags: ' . htmlentities('<a><b>'); ?>
于 2013-04-11T19:24:11.657 回答
0

使用 PHP htmlentities()将特殊字符转换为 html 实体,如下所示:

<?php echo htmlentities('Allowable tags: <a><b>'); ?>
于 2013-04-11T19:24:34.350 回答
0

您可以使用 HTML 转义字符...

http://www.w3schools.com/tags/ref_entities.asp

于 2013-04-11T19:25:11.410 回答
0

htmlspecialchars — 将特殊字符转换为 HTML 实体。

<?php echo htmlspecialchars('Allowable tags: <a><b>'); ?>

输出 HTML:

Allowable tags: &lt;a&gt;&lt;b&gt;

被视为:

允许的标签:<a><b>

于 2013-04-11T19:29:07.470 回答