API15

Difference between revisions of "JCacheStorageApc/clean"

From Joomla! Documentation

< API15:JCacheStorageApc
(New page: ===Description=== Clean cache for a group given a mode. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowi...)
(No difference)

Revision as of 17:12, 22 March 2010

The "API15" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Clean cache for a group given a mode.

[Edit Descripton]

Template:Description:JCacheStorageApc/clean

Syntax[edit]

clean($group, $mode)
Parameter Name Default Value Description
$group $group The cache data group
$mode notgroup]

Returns[edit]

boolean True on success, false otherwise

Defined in[edit]

libraries/joomla/cache/storage/apc.php

Importing[edit]

jimport( 'joomla.cache.storage.apc' );

Source Body[edit]

function clean($group, $mode)
{
        return true;
}

[Edit See Also] Template:SeeAlso:JCacheStorageApc/clean

Examples[edit]

<CodeExamplesForm />