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

后端 未结 3 1598
耶瑟儿~
耶瑟儿~ 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:41

    If you want to have "greater than" and "lesser than" signs, you need to escape them:

    > is >

    < is <

    See e.g. this: http://www.w3schools.com/html/html_entities.asp

提交回复
热议问题