去除所有 HTML 标签,允许的除外

2022-01-18 00:00:00 regex tags php html

我见过很多删除特定标签(或许多指定标签)的表达式,以及 一个删除除一个特定标记之外的所有标记,但我还没有找到一种方法来删除除许多排除之外的所有标记(即除p、b、i、u、a、ul 之外的所有标记,ol, li) 在 PHP 中.我对正则表达式还不够好,所以我需要帮助.:) 谢谢!

I've seen a lot of expressions to remove a specific tag (or many specified tags), and one to remove all but one specific tag, but I haven't found a way to remove all except many excluded (i.e. all except p, b, i, u, a, ul, ol, li) in PHP. I'm far from good with regex, so I'd need a hand. :) Thanks!

推荐答案

strip_tags() 正是这样做的.

strip_tags() does exactly this.

相关文章