API17

JCacheStorageXcache::remove: Difference between revisions

From Joomla! Documentation

m clean up
m preparing for archive only
 
Line 4: Line 4:
Remove a cached data entry by id and group.  
Remove a cached data entry by id and group.  


{{subst:Description:JCacheStorageXcache::remove}}
 


<source lang="php">
<source lang="php">
Line 38: Line 38:
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Cache|Cache]]
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Cache|Cache]]
* [[API17:JCacheStorageXcache::remove|Other versions of JCacheStorageXcache::remove]]
* [[API17:JCacheStorageXcache::remove|Other versions of JCacheStorageXcache::remove]]
{{subst:SeeAlso:JCacheStorageXcache::remove}}
 


===User contributed notes===
===User contributed notes===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
noresultsheader=\n
noresultsheader=\n
category=JCacheStorageXcache::remove
category=JCacheStorageXcache::remove
category=CodeExample
namespace=CodeExample
category=MethodExample
category=MethodExample
include=*
include=*

Latest revision as of 02:28, 25 March 2017

Joomla 11.1 JCacheStorageXcache::remove

Description

Remove a cached data entry by id and group.


public function remove (
        $id
        $group
)
Parameter Type Default Description
$id string The cache data id
$group string The cache data group
  • Returns boolean True on success, false otherwise
  • Defined on line 107 of libraries/joomla/cache/storage/xcache.php
  • Since Joomla 11.1

See also


User contributed notes

Code Examples