如何在php中允许使用htmlentites()的某些HTML标记

时间:2014-01-19 19:42:33

标签: php html

我想允许<B><I>等标记以及用户可以修改其评论的其他标记。

1 个答案:

答案 0 :(得分:0)

使用strip_tags

strip_tags ( $str, "<i><b>");

这将删除除<i><b>

之外的任何其他代码