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

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

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -