php - How to print all sessions currently set? -


without having call each session name, there way display contents of sessions set?

echo '<pre>'; var_dump($_session); echo '</pre>'; 

or can use print_r if don't care types. if use print_r, can make second argument true return instead of echo, useful for...

echo '<pre>' . print_r($_session, true) . '</pre>'; 

Comments

Popular posts from this blog

windows - Why does Vista not allow creation of shortcuts to "Programs" on a NonAdmin account? Not supposed to install apps from NonAdmin account? -

c++ - How do I get a multi line tooltip in MFC -

unit testing - How to mock PreferenceManager in Android? -