API16:JSessionStorageApc/gc
From Joomla! Documentation
Description
Garbage collect stale sessions from the SessionHandler backend.
Syntax
gc($maxlifetime)
| Parameter Name | Default Value | Description |
|---|---|---|
| $maxlifetime | $maxlifetime The maximum age of a session. |
Returns
boolean True on success, false otherwise.
Defined in
libraries/joomla/session/storage/apc.php
Importing
jimport( 'joomla.session.storage.apc' );
Source Body
function gc($maxlifetime)
{
return true;
}
Examples
Code Examples