允许一些html标签

时间:2015-05-20 01:07:48

标签: php html tags strip-tags

我需要允许某些html标签(br,p和strong),并且我遇到了这段代码。

(100/2)*X=50X

我需要的是允许我之前说过的那些标签,但我不知道该怎么做。

1 个答案:

答案 0 :(得分:7)

如果你查看documentation for strip_tags,它会显示第二个参数是"允许标记",所以如何允许br,p和strong的示例是这样的:

$string = "Hello<br>";
echo strip_tags($string, "<br><br/><p><strong>");
  

添加br和br /一起允许两种类型的换行而不只是一种。

(strip_tags($this->parent->content[$i]['text'], "<br><br/><p><strong>"), $this->parent->config, 'portal_mode_grid_news_text_length', '&hellip;').'</p>';