php strip_tags问题

Pin*_*ody 2 php

我想从除(<img> and <br>)之外的字符串中去除所有html标签.

我用了strip_tags(); 但它剥离了所有的html标签.

问候

Kav*_*gel 13

那些需要在第二个参数中指定.

echo strip_tags($text, '<img><br>');
Run Code Online (Sandbox Code Playgroud)