pastebin
| #1 paste tool since 2002
create new paste
tools
api
archive
real-time
faq
pastebin
Follow @pastebin
create new paste
trending pastes
sign up
login
my settings
my profile
My Pastes
Public Pastes
Untitled
2 sec ago
Untitled
8 sec ago
delete *.pyc
8 sec ago
BritishSexFilms 11 11 1...
8 sec ago
watch BEING HUMAN (UK) ...
17 sec ago
UseNext Premium Account...
11 sec ago
Untitled
14 sec ago
Wales vs Scotland Live@...
MIX Assembler | 30 sec ago
Layout Width
Share Pastebin
Master
By: a guest | Jul 9th, 2009 | Syntax:
PHP
| Size: 0.24 KB | Hits: 107 | Expires: Never
Download
|
Raw
|
Embed
|
Report abuse
This paste has a previous version,
view the difference
.
function
strips
(
&
$el
)
{
if
(
is_array
(
$el
)
)
foreach
(
$el
as
&
$v
)
strips
(
$v
)
;
else
$el
=
stripslashes
(
$el
)
;
}
if
(
get_magic_quotes_gpc
(
)
)
{
strips
(
$_GET
)
;
strips
(
$_POST
)
;
strips
(
$_COOKIE
)
;
strips
(
$_REQUEST
)
;
}
create new paste
|
create new version of this paste
RAW Paste Data
function strips(&$el) { if (is_array($el)) foreach($el as &$v) strips($v); else $el = stripslashes($el); } if (get_magic_quotes_gpc()) { strips($_GET); strips($_POST); strips($_COOKIE); strips($_REQUEST); }