php防止sql注入代码实例

前端之家收集整理的这篇文章主要介绍了php防止sql注入代码实例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

放到公用调用文件(如conn数据库链接文件),对所有GET或POST的数据进行过滤特殊字符串,以实现简单有效的sql注入过滤

代码如下:
Function inject_check($sql_str) {
return eregi('select|insert|and|or|update|delete|\'|\/\*|\*|\.\.\/|\.\/|union|into|load_file|outfile',$sql_str);
}
if (inject_check($_SERVER['QUERY_STRING'])==1 or inject_check(file_get_contents("PHP://input"))==1){
//echo "警告 非法访问!";
header("Location: Error.PHP");
}

原文链接:https://www.f2er.com/php/25368.html

猜你在找的PHP相关文章