When using PHPs standard sessions, how can I find out the timeout/lifetime of a specific session? Where is the "timestamp"-info that determines this? Is that the session file's creation time or the last time it got updated (+session.maxlifetime)?
Is it possible to retrieve that info and perhaps change it and if so how? (as opposed to simply changing the maxlifetime). Will session_regenerate_id(true) cause an update? Will session_write_close() cause an update and will that also happen every time a script using the session finishes (and thus initiates a write to the session file)?
Bjom