API15:JCache/gc
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
Garbage collect expired cache data
Syntax
gc()
Returns
boolean True on success, false otherwise.
Defined in
libraries/joomla/cache/cache.php
Importing
jimport( 'joomla.cache.cache' );
Source Body
function gc() { // Get the storage handler $handler =& $this->_getStorage(); if (!JError::isError($handler)) { return $handler->gc(); } return false; }
[Edit See Also] SeeAlso:JCache/gc
Examples
<CodeExamplesForm />
