//处理php自动反斜杠 <BR>if (get_magic_quotes_gpc()) { <BR>function stripslashes_deep($value) <BR>{ <BR>$value = is_array($value) ? <BR>array_map('stripslashes<strong style="color:transparent">9来源gaodai#ma#com搞@代~码$网</strong>搞gaodaima代码_deep', $value) : <BR>stripslashes($value); <br><br>return $value; <BR>} <br><br>$_POST = array_map('stripslashes_deep', $_POST); <BR>$_GET = array_map('stripslashes_deep', $_GET); <BR>$_COOKIE = array_map('stripslashes_deep', $_COOKIE); <BR>} <BR>