API16

API16:JCache/remove

From Joomla! Documentation

Revision as of 22:38, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Remove a cached data entry by id and group <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

Remove a cached data entry by id and group

[Edit Descripton]

Template:Description:JCache/remove

Syntax

remove($id, $group=null)
Parameter Name Default Value Description
$id $id The cache data id
$group null $group The cache data group

Returns

boolean True on success, false otherwise

Defined in

libraries/joomla/cache/cache.php

Importing

jimport( 'joomla.cache.cache' );

Source Body

function remove($id, $group=null)
{
        // Get the default group
        $group = ($group) ? $group : $this->_options['defaultgroup'];

        // Get the storage handler
        $handler = &$this->_getStorage();
        if (!JError::isError($handler)) {
                return $handler->remove($id, $group);
        }
        return false;
}

[Edit See Also] Template:SeeAlso:JCache/remove

Examples

<CodeExamplesForm />