lourencobasso
Actually that function only clears the corresponding values in $GLOBALS hash and does not touch the actual value in $_SESSION hash.
So for example you set $_SESSION[‘key1’] and that function unsets $GLOBALS[‘key1’] so that $key1 become unaccessible but this does not affect $_SESSION[‘key1’] and you can use it after you initialize the session with session_start() function.