The Punisher
MFC Üyesi
-
- Üyelik Tarihi
- 6 Haz 2015
-
- Mesajlar
- 578
-
- MFC Puanı
- 31
PHP:
function G_filter($text) {
if ( is_array($text) ) {
$text = array_map('G_filter', $text);
} else {
if ( get_magic_quotes_gpc() ) {
$text = htmlspecialchars(stripcslashes(trim($text)),ENT_QUOTES);
} else {
$text = htmlspecialchars(trim($text),ENT_QUOTES);
}
}
return $text;
}
$_GET = array_map('G_filter',$_GET);
$_POST = array_map('G_filter',$_POST);
$_COOKIE = array_map('G_filter',$_COOKIE);