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

php sql 防注入代码

程序员文章站 2022-05-25 11:46:05
...
 $value) {
        if (eregi($value, $StrFiltrate)) {
            return true; //开源代码phprm.com
            
        }
    }
    return false;
}
//合并$_POST 和 $_GET
if (function_exists(array_merge)) {
    $ArrPostAndGet = array_merge($HTTP_POST_VARS, $HTTP_GET_VARS);
} else {
    foreach ($HTTP_POST_VARS as $key => $value) {
        $ArrPostAndGet[] = $value;
    }
    foreach ($HTTP_GET_VARS as $key => $value) {
        $ArrPostAndGet[] = $value;
    }
}
//验证开始
foreach ($ArrPostAndGet as $key => $value) {
    if (FunStringExist($value, $ArrFiltrate)) {
        echo "";
        if (emptyempty($StrGoUrl)) {
            echo "";
        } else {
            echo "";
        }
        exit;
    }
}


文章网址:

随意转载^^但请附上教程地址。