作者:信妹氵V | 来源:互联网 | 2018-07-16 21:15
ec(2);functiontestAddslashes($array){ if(!get_magic_quotes_gpc()){ if(is_array($array)){ foreach($arrayas$key>$val){ $arra
function testAddslashes($array) {
if(!get_magic_quotes_gpc()) {
if(is_array($array)) {
foreach($array as $key => $val) {
$array[$key] = testAddslashes($val);
}
} else {
$array = addslashes($array);
}
$array=str_replace("&#x","& # x",$array); //过滤一些不安全
字符s
$array=str_replace("<","<",$array); //过滤<
}
return $array;
}
if( $_POST)
{
print_r( $_POST );
echo '过滤前
';
$_POST = testAddslashes($_POST);
echo '
过滤后
';
echo $_POST['textfield'];
}
?>
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
id="form1">