I know how to set the duration of a session (both in a PHP file and in my php.ini file)...but my question is the reverse... How (in php) can I lookup what the current session.gc_maxlife value is?
The reason: I work with a variety of shared hosting environments...all of which have different values. Most are the default 24 minutes, but some have variation. I want to be able to pop up a warning to my users just prior to session expiration, but i want my script to figure out that time delay based on the actual server settings. I know I can manually look up this info with phpinfo(); but am not aware of a way to get just this single value. Is there a command for this that my googlefu is failing me on? Has someone written a function to calculate it? Thanks!
ini_get("session.gc_maxlifetime")? – yoda Sep 15 '12 at 4:47