mysql_escape_string whole post array?

前端 未结 4 777
野趣味
野趣味 2021-01-02 06:10

I was wondering is it possible to just my_sql_escape string the whole $_POST and $_GET array so you dont miss any variables?

Not sure how to test it or I would\'ve m

4条回答
  •  遥遥无期
    2021-01-02 06:29

    $escaped_POST = array_map('mysql_real_escape_string', $_POST);
    

    Though, I would recommend using MySQLi instead.

提交回复
热议问题