Maison  >  Article  >  développement back-end  >  php 防sql注入过滤代码

php 防sql注入过滤代码

高洛峰
高洛峰original
2016-11-29 15:10:481985parcourir

我们提供了三个函数不来过滤一些特殊的字符,主要是利用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("<", "<", $str);

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

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

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

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

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

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

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

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

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

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

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

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

 return $str; 

}//开源代码phpfensi.com 

function phpsql_replace($str){ 

 $str = stripslashes($str); 

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

 return $str; 


Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Article précédent: php ftp函数文件上传Article suivant: php符转换为HTML实体