时间:2021-07-01 10:21:17 帮助过:13人阅读
代码如下 | |
$magic_quotes_gpc = get_magic_quotes_gpc(); @extract(daddslashes($_COOKIE)); @extract(daddslashes($_POST)); @extract(daddslashes($_GET)); if(!$magic_quotes_gpc) { $_FILES = daddslashes($_FILES); } |
daddslashes函数
代码如下 | |
//转译字符函数 |
?>
http://www.bkjia.com/PHPjc/629649.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/629649.htmlTechArticle在php5的环境中我们的$_SERVER变量将不再受magic_quotes_gpc的保护,至于程序该如何加强自己的安全性,下面我们总结了怎么保护php中的cookie,get,...