php 批量过滤post,get敏感数据_PHP教程
程序员文章站
2022-04-28 14:53:12
...
php 批量过滤post,get敏感数据
if (get_magic_quotes_gpc()) {
$_GET = stripslashes_array($_GET);
$_POST = stripslashes_array($_POST);
}
function stripslashes_array(&$array) {
while(list($key,$var) = each($array)) {
if ($key != 'argc' && $key != 'argv' && (strtoupper($key) != $key || ''.intval($key) == "$key")) {
if (is_string($var)) {
$array[$key] = stripslashes($var);
}
if (is_array($var)) {
$array[$key] = stripslashes_array($var);
}
}
}
return $array;
}
上一篇: PHP常用的排序和查找算法_PHP
下一篇: pscs6是什么意思
推荐阅读
-
php过滤所有恶意字符(批量过滤post,get敏感数据)
-
php中$_GET与$_POST过滤sql注入的方法
-
PHP如何过滤GET或者POST的参数?如何样才能保证代码不被注入
-
PHP中使用socket方式GET、POST数据实例,socketget_PHP教程
-
php中$_GET,$_POST,$_REQUEST用法与区别分析_PHP教程
-
php中$_GET与$_POST过滤sql注入的方法_PHP
-
php过滤所有恶意字符(批量过滤post,get敏感数据)
-
利用PHP fsockopen 模拟POST/GET传送数据的方法,fsockopenpost_PHP教程
-
php中$_GET与$_POST过滤sql注入的方法
-
php防注入过滤客户提交$_GET 和$_POST参数