本文章來給大家介紹一個php $_GET $_POST過濾sql注入程序代碼函數,希望些函數對各位朋友有幫助,此函數只能過濾一些敏感的sql命令了,像id=1這種大家還是需要自己簡單過濾了。 代碼如下 復制代碼
if (!get_magic_quotes_gpc())
{
if (!empty($_GET))
{
$_GET = addslashes_deep($_GET);
}
if (!empty($_POST))
{
$_POST = addslashes_deep($_POST);
}
$_COOKIE = addslashes_deep($_COOKIE);
$_REQUEST = addslashes_deep($_REQUEST);
}
function addslashes_deep($value)
{
if (empty($value))
{
return $value;
}
else
{
return is_array($value) ? array_map('addslashes_deep', $value) : addslashes($value);
}
}