What are the best PHP input sanitizing functions?

后端 未结 13 1512
抹茶落季
抹茶落季 2020-11-21 23:31

I am trying to come up with a function that I can pass all my strings through to sanitize. So that the string that comes out of it will be safe for database insertion. But t

13条回答
  •  一个人的身影
    2020-11-21 23:56

    what about this

    $string = htmlspecialchars(strip_tags($_POST['example']));
    

    or this

    $string = htmlentities($_POST['example'], ENT_QUOTES, 'UTF-8');
    

提交回复
热议问题