欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php安全之直接用$获取值而不$_GET 字符转义

程序员文章站 2022-04-28 15:45:37
复制代码 代码如下:
复制代码 代码如下:

<?
function my_addslashes($string, $force = 0) {
!defined('magic_quotes_gpc') && define('magic_quotes_gpc', get_magic_quotes_gpc());
if(!magic_quotes_gpc || $force) {
if(is_array($string)) {
foreach($string as $key => $val) {
$string[$key] = my_addslashes($val, $force);
}
} else {
$string = addslashes($string);
}
}
return $string;
}
foreach(array('_cookie', '_post', '_get') as $_request) {
foreach($$_request as $_key => $_value) {
$_key{0} != '_' && $$_key = my_addslashes($_value);
}
}
echo $urls;
?>