/* 对用户传入的变量进行转义操作。*/ if (!get_magic_quotes_gpc()){ if (!empty($_GET)){$_GET = addslashes_deep($_GET);} if (!empty($_POST)){$_POST = addslashes_deep($_POST);} $_COOKIE = addslashes_deep($_COOKIE); $_REQUEST = addslashes_deep($_REQUEST); } /* 递归方式的对变量中的特殊字符进行转义*/ function addslashes_deep($value){return empty($value)?$value:is_array($value) ? array_map('addslashes_deep', $value) : addslashes($value);}
原文链接:https://www.qiquanji.com/post/8116.html
本站声明:网站内容来源于网络,如有侵权,请联系我们,我们将及时处理。
微信扫码关注
更新实时通知