I have a session like this: $_SESSION['mycatalogue']['user']
When I unset, I do this: unset($_SESSION['mycatalogue'])
What I want to know is, are all of the following meant to do the same thing:
unset($_SESSION['mycatalogue'])
unset($_SESSION['mycatalogue']['user'])
$_SESSION['mycatalogue']['user'] = ""
So when I am unsetting a session or assigning NULL to it, it still keeps the arrays in memory?