当前位置:Gxlcms > PHP教程 > php防sql注入过滤代码

php防sql注入过滤代码

时间:2021-07-01 10:21:17 帮助过:1人阅读

我们提供了三个函数不来过滤一些特殊的字符,主要是利用php把sql敏感字符串给过滤掉了,好了下面来看看这款代码吧,有需要的朋友拿去看看,实例代码如下:

function phpsql_show($str){

$str = stripslashes($str);

$str = str_replace("\", "", $str);

$str = str_replace("/", "/", $str);

$str = str_replace(" ", " ", $str);

$str = str_replace(",", ",", $str);

return $str;

}

function phpsql_post($str){

$str = stripslashes($str);

$str = str_replace("|", "|", $str);

$str = str_replace("<", "&#60;", $str);

$str = str_replace(">", "&#62;", $str);

$str = str_replace("&nbsp;", "&#32;", $str);

$str = str_replace(" ", "&#32;", $str);

$str = str_replace("(", "&#40;", $str);

$str = str_replace(")", "&#41;", $str);

$str = str_replace("`", "&#96;", $str);

//$str = str_replace("'", "&#39;", $str);

$str = str_replace('"', "&#34;", $str);

$str = str_replace(",", "&#44;", $str);

$str = str_replace("$", "&#36;", $str);

$str = str_replace("", "&#92;", $str);

$str = str_replace("/", "&#47;", $str);

return $str;

}//开源代码phpfensi.com

function phpsql_replace($str){

$str = stripslashes($str);

$str = str_replace("'", "&#39;", $str);

return $str;

}

人气教程排行