使用 get_magic_quotes_gpc 来防止数据库攻击是否仍然相关?如果启用了魔术引号,我想去掉多余的斜线。
if(get_magic_quotes_gpc()){
If magic quotes is enabled, strip the extra slashes
array_walk_recursive($_GET,create_function('&$v,$k','$v = stripslashes($v);'));
array_walk_recursive($_POST,create_function('&$v,$k','$v = stripslashes($v);'));
}
我查看了 php 手册,发现它已被弃用。我不确定我可以使用哪些替代方案,或者是否有我不知道的调整。因为我对编程和学习不同的编码技术仍然很陌生。任何提示将非常感谢