Skip to content

Instantly share code, notes, and snippets.

@fmtarif
Created March 6, 2014 06:58
Show Gist options
  • Save fmtarif/9383857 to your computer and use it in GitHub Desktop.
Save fmtarif/9383857 to your computer and use it in GitHub Desktop.
#php - shortest recursive array processor
if (get_magic_quotes_gpc()) {
function strip_array($var) {
return is_array($var)? array_map("strip_array", $var):stripslashes($var);
}
$_POST = strip_array($_POST);
$_SESSION = strip_array($_SESSION);
$_GET = strip_array($_GET);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment