I need to get the remaining time for a session until expiration. I know sessions work by garbage collection & the max lifetime is not very accurate but i need a way to detect when a session will expire.
from:retrieve php server session timeout
$maxlifetime = ini_get("session.gc_maxlifetime");
returns: 1440
interesting post: How do I expire a PHP session after 30 minutes?