I am trying to figure out what happens when data gets session_encode(d). Nothing in the manual about what happens, but it appears to be sort of serialized, but not exactly.
I am working with Postnuke which stores its session data in a DB instead of in files. I want to access the session variables of multiple users at once. The data that is stored in the DB is session_encoded, so I can't decode it.
Session_decode doesn't seem to get me anywhere (although ti seems like the obvious solution). I'm guessing that it will only decode one session and it dumps the data into my own session variables, which is undesired.
Any help would be appreciated.