How to strip tags in a safer way than using strip_tags function?

后端 未结 3 1601
耶瑟儿~
耶瑟儿~ 2021-01-18 05:48

I\'m having some problems using strip_tags PHP function when the string contains \'less than\' and \'greater than\' signs. For example:

If I do:

stri         


        
3条回答
  •  南笙
    南笙 (楼主)
    2021-01-18 06:35

    As a wacky workaround you could filter non-html brackets with:

    $html = preg_replace("# <(?![/a-z]) | (?<=\s)>(?![a-z]) #exi", "htmlentities('$0')", $html);
    

    Apply strip_tags() afterwards. Note how this only works for your specific example and similar cases. It's a regular expression with some heuristics, not artificial intellegince to discern html tags from unescaped angle brackets with other meaning.

提交回复
热议问题