I’m stepping through code using Eclipse PDT. When I mouseover an array it says e.g. “$_SESSION = Array [0]”, but won’t show me the data.
This is fine for local varaibles as I can see them in the “Variables” window, but it means that I can’t see the contents of $_GET, $_POST, $_SESSION.
How do I fix this?
Assuming you are using xdebug.
If you look in the Variables window, it will have also list those superglobal arrays you mention (_SESSION, _POST, …). If you don’t see them, try upgrading xdebug. I have found it really buggy, for this very area (variables during debug).