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. | ||
<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]] | ||
===User contributed notes=== | ===User contributed notes=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JCacheStorageXcache::remove | category=JCacheStorageXcache::remove | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
Latest revision as of 02:28, 25 March 2017
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

See also
JCacheStorageXcache::remove source code on BitBucket
Class JCacheStorageXcache
Subpackage Cache- Other versions of JCacheStorageXcache::remove
User contributed notes
Code Examples