PHP - remove HTML tags from a string except for <img>

I want to remove all tags except the img tag,

$words = strip_tags($words, '<img>');

Is this useful?

+3
source share
1 answer

Yes to remove tags.
But strip_tags()it will not help against the most dangerous thing - XSS . You will need some regular expression or use http://htmlpurifier.org/ to make sure that the tag <img>does not have any unwanted parameters.

+10
source

Source: https://habr.com/ru/post/1740624/


All Articles