PHP Unset global variables

Unset global variables

<?php

if (@ini_get('register_globals'))

foreach ($_REQUEST as $key => $value)

unset($GLOBALS[$key]);

?>