允许一些 html 标签

Allow some html tags

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

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

我只需要允许我之前声明的那些标签,但我不知道该怎么做。

如果你查看documentation for strip_tags,它显示第二个参数是"allowed tags",所以如何允许br、p和strong的例子如下:

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

Adding br and br/ together allows both types of line break as opposed to just one.

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