Not sure if this belongs here or at webapps... please move if appropriate.
I don't even know if such a thing is possible, but is there an extension or add-on for either Firefox or Chrome that would let me view all my PHP session variables the way there are extensions that let you view cookies?
You can check whether a variable has been set in a user's session using the function isset(), as you would a normal variable. Because the $_SESSION superglobal is only initialised once session_start() has been called, you need to call session_start() before using isset() on a session variable.
# View sessionStorage keys and valuesClick the Application tab to open the Application panel. Expand the Session Storage menu. Click a domain to view its key-value pairs. Click a row of the table to view the value in the viewer below the table.
Session variables on the client are read-only. They cannot be modified.
php session_start(); echo "<h3> PHP List All Session Variables</h3>"; foreach ($_SESSION as $key=>$val) echo $key." ".
Cookies are available on the client-side, so they can be seen from the browser.
On the other hand, session data is stored on the server, and never sent to the client (except you write some code to do just that, of course).
To dump the content of a variable, like $_SESSION
, you can use the var_dump()
function.
On a development server, you can install the Xdebug extension to enhance its output greatly (and lots of other debugging-related things, btw).
If you don't want to pollute the HTML of your page, you could install the FirePHP extension to FireBug, and use the corresponding PHP library to send data (like dump of variables) to it.
This would allow your variables, like $_SESSION
, to be displayed in firebug's console.
PHP session variables are stored on the server and are inaccessible to the client.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With