API16:JTableSession/purge
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Purge old sessions
Description:JTableSession/purge
Syntax
purge($maxLifetime=1440)
| Parameter Name | Default Value | Description |
|---|---|---|
| $maxLifetime | 1440 | Session age in seconds |
Returns
mixed Resource on success, null on fail
Defined in
libraries/joomla/database/table/session.php
Importing
jimport( 'joomla.database.table.session' );
Source Body
function purge($maxLifetime = 1440) { $past = time() - $maxLifetime; $query = 'DELETE FROM '. $this->_tbl .' WHERE (time < \''. (int) $past .'\')'; // Index on 'VARCHAR' $this->_db->setQuery($query); return $this->_db->query(); }
[Edit See Also] SeeAlso:JTableSession/purge
Examples
<CodeExamplesForm />
