$content = strip_tags($content,'<br>,<img>,<p>,<strong>,<video>,<iframe>');
//转换html代码
用这个strip_tags如何将<p style="color: rgb(61, 61, 61); font-size: 14px; line-height: 1.5em; letter-spacing: 0.5px; text-indent: 0em; padding-top: 5px; padding-bottom: 5px;">
里面的style过滤去掉,只保留<p>,<br>,<img>,<p>,<strong>,<video>,<iframe>
这种情况使用正则最方便吧,如果单纯的想过滤style标签的画,strip_tags只能对于标签有效,不能对标签属性有效哦。你参考我的例子,可以过滤出来
php过滤标签style
strip_tags第二个参数只是不被去掉的字符而已,不会去自动识别标记,想达到需要的效果,建议用正则
有没有帮忙看下,实在不懂