php安全过滤函数代码大全汇总

发布时间:2019-08-07编辑:脚本学堂
分享一些php安全过滤函数代码,用于过滤不安全的用户输入,过滤html标签等,一些常用的php安全过滤函数代码,需要的朋友参考下。

php 安全过滤函数代码,防止用户恶意输入内容。

例1,安全过滤输入代码。
 

复制代码 代码示例:
function check_str($string, $isurl = false)
{
$string = preg_replace('/[x00-x08x0Bx0Cx0E-x1F]/','',$string);
$string = str_replace(array("","%00","r"),'',$string);
empty($isurl) && $string = preg_replace("/&(?!(#[0-9]+|[a-z]+);)/si",'&',$string);
$string = str_replace(array("%3C",'<'),'<',$string);
$string = str_replace(array("%3E",'>'),'>',$string);
$string = str_replace(array('"',"'","t",' '),array('“','‘',' ',' '),$string);
return trim($string);
}

1、分享一些过滤函数:
 

复制代码 代码示例:
/**
* 安全过滤类-过滤javascript,css,iframes,object等不安全参数 过滤级别高
*  Controller中使用方法:$this->controller->fliter_script($value)
* @param  string $value 需要过滤的值
* @return string
*/
function fliter_script($value) {
$value = preg_replace("/(javascript:)?on(click|load|key|mouse|error|abort|move|unload|change|dblclick|move|reset|resize|submit)/i","&111n2",$value);
$value = preg_replace("/(.*?)</script>/si","",$value);
$value = preg_replace("/(.*?)</iframe>/si","",$value);
$value = preg_replace ("//iesU", '', $value);
return $value;
}
/**
* 安全过滤类-过滤HTML标签
*  Controller中使用方法:$this->controller->fliter_html($value)
* @param  string $value 需要过滤的值
* @return string
*/
function fliter_html($value) {
if (function_exists('htmlspecialchars')) return htmlspecialchars($value);
return str_replace(array("&", '"', "'", "<", ">"), array("&", """, "'", "<", ">"), $value);
}
/**
* 安全过滤类-对进入的数据加下划线 防止sql注入
*  Controller中使用方法:$this->controller->fliter_sql($value)
* @param  string $value 需要过滤的值
* @return string
*/
function fliter_sql($value) {
$sql = array("select", 'insert', "update", "delete", "'", "/*",
     "../", "./", "union", "into", "load_file", "outfile");
$sql_re = array("","","","","","","","","","","","");
return str_replace($sql, $sql_re, $value);
}
/**
* 安全过滤类-通用数据过滤
*  Controller中使用方法:$this->controller->fliter_escape($value)
* @param string $value 需要过滤的变量
* @return string|array
*/
function fliter_escape($value) {
if (is_array($value)) {
  foreach ($value as $k => $v) {
   $value[$k] = self::fliter_str($v);
  }
} else {
  $value = self::fliter_str($value);
}
return $value;
}
/**
* 安全过滤类-字符串过滤 过滤特殊有危害字符
*  Controller中使用方法:$this->controller->fliter_str($value)
* @param  string $value 需要过滤的值
* @return string
*/
function fliter_str($value) {
$badstr = array("", "%00", "r", '&', ' ', '"', "'", "<", ">", "   ", "%3C", "%3E");
$newstr = array('', '', '', '&', ' ', '"', ''', "<", ">", "   ", "<", ">");
$value  = str_replace($badstr, $newstr, $value);
$value  = preg_replace('/&((#(d{3,5}|x[a-fA-F0-9]{4}));)/', '&1', $value);
return $value;
}
/**
* 私有路劲安全转化
*  Controller中使用方法:$this->controller->filter_dir($fileName)
* @param string $fileName
* @return string
*/
function filter_dir($fileName) {
$tmpname = strtolower($fileName);
$temp = array(':/',"", "..");
if (str_replace($temp, '', $tmpname) !== $tmpname) {
  return false;
}
return $fileName;
}
/**
* 过滤目录
*  Controller中使用方法:$this->controller->filter_path($path)
* @param string $path
* @return array
*/
public function filter_path($path) {
$path = str_replace(array("'",'#','=','`','$','%','&',';'), '', $path);
return rtrim(preg_replace('/(/){2,}|(){1,}/', '/', $path), '/');
}
/**
* 过滤PHP标签
*  Controller中使用方法:$this->controller->filter_phptag($string)
* @param string $string
* @return string
*/
public function filter_phptag($string) {
return str_replace(array(''), array('<?', '?>'), $string);
}
/**
* 安全过滤类-返回函数
*  Controller中使用方法:$this->controller->str_out($value)
* @param  string $value 需要过滤的值
* @return string
*/
public function str_out($value) {
$badstr = array("<", ">", "%3C", "%3E");
$newstr = array("<", ">", "<", ">");
$value  = str_replace($newstr, $badstr, $value);
return stripslashes($value); //下划线
}

2、php过滤HTML代码的函数
 

复制代码 代码示例:
/*----------------------
过滤HTML代码的函数
-----------------------*/
function htmlEncode($string) {
    $string=trim($string);
    $string=str_replace("&","&",$string);
    $string=str_replace("'","'",$string);
    $string=str_replace("&amp;","&",$string);
    $string=str_replace("&quot;",""",$string);
    $string=str_replace(""",""",$string);
    $string=str_replace("&lt;","<",$string);
    $string=str_replace("<","<",$string);
    $string=str_replace("&gt;",">",$string);
    $string=str_replace(">",">",$string);
    $string=str_replace("&nbsp;"," ",$string);
    $string=nl2br($string);
    return $string;
}

3、php过滤危险html代码的函数
用php过滤html里可能被利用来引入外部危险内容的代码。
 

复制代码 代码示例:

#用户发布的html,过滤危险代码 
function uh($str) 

$farr = array( 
"/s+/", //过滤多余的空白 
"/<(/?)(scrīpt|i?frame|style|html|body|title|link|meta|?|%)([^>]*?)>/isU", //过滤 <scrīpt 等可能引入恶意内容或恶意改变显示布局的代码,如果不需要插入flash等,还可以加入<object的过滤 
"/(<[^>]*)on[a-zA-Z]+s*=([^>]*>)/isU", //过滤javascrīpt的on事件 

); 
$tarr = array( 
" ", 
"<\1\2\3>", //如果要直接清除不安全的标签,这里可以留空 
"\1\2", 
); 

$str = preg_replace( $farr,$tarr,$str); 
return $str; 
}