欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php防注

程序员文章站 2022-07-11 08:14:19
$_post = sql_injection($_post); $_get = sql_injection($_get); func...
$_post = sql_injection($_post);
$_get = sql_injection($_get);

function sql_injection($content)
{
if (!get_magic_quotes_gpc()) {
if (is_array($content)) {
foreach ($content as $key=>$value) {
$content[$key] = addslashes($value);
}
} else {
addslashes($content);
}

return $content;
}