时间:2021-07-01 10:21:17 帮助过:18人阅读
输出的还是l\'\\这样。访问a.php?a=1'\
怎么能自动关闭?
不使用stripslashes
输出的还是l\'\\这样。访问a.php?a=1'\
怎么能自动关闭?
不使用stripslashes
if (get_magic_quotes_gpc()) { function stripslashes_deep($value) { $value = is_array($value) ? array_map(’stripslashes_deep’, $value) : stripslashes($value); return $value; } $_POST = array_map(’stripslashes_deep’, $_POST); $_GET = array_map(’stripslashes_deep’, $_GET); $_COOKIE = array_map(’stripslashes_deep’, $_COOKIE); }