API17

Difference between revisions of "JCacheStorageMemcache::remove"

From Joomla! Documentation

(Layout updates)
m (preparing for archive only)
 
(5 intermediate revisions by 2 users not shown)
Line 4: Line 4:
 
Remove a cached data entry by id and group.  
 
Remove a cached data entry by id and group.  
  
{{Description:JCacheStorageMemcache::remove}}
+
 
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[Description:JCacheStorageMemcache::remove|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
===Since===
 
{{JVer|11.1 }}
 
===Synopsis===
 
 
<source lang="php">
 
<source lang="php">
public JCacheStorageMemcache::remove ($id, $group)
+
public function remove (
 +
        $id
 +
        $group
 +
)
 
</source>
 
</source>
 
{| class="wikitable"
 
{| class="wikitable"
Line 32: Line 30:
 
|-
 
|-
 
|}
 
|}
===Returns===
+
* '''Returns''' boolean True on success, false otherwise
boolean True on success, false otherwise
+
* '''Defined''' on line 194 of libraries/joomla/cache/storage/memcache.php
===Defined in===
+
* '''Since''' {{JVer|11.1 }}
libraries/joomla/cache/storage/memcache.php (line 194)
 
* see source code in [[jplatform:cache/storage/memcache.php#cl-194|BitBucket]]
 
===Referenced by===
 
 
===See also===
 
===See also===
<span class="editsection" style="font-size:76%;">
+
* {{JVer|11.1}} '''JCacheStorageMemcache::remove source code''' on [[jplatform:cache/storage/memcache.php#cl-186|BitBucket]]
<nowiki>[</nowiki>[[SeeAlso:JCacheStorageMemcache::remove|Edit See Also]]<nowiki>]</nowiki>
+
* {{JVer|11.1}} Class [[API17:JCacheStorageMemcache|JCacheStorageMemcache]]
</span>
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Cache|Cache]]
* [[JCacheStorageMemcache/11.1|JCacheStorageMemcache]]
+
* [[API17:JCacheStorageMemcache::remove|Other versions of JCacheStorageMemcache::remove]]
* [[JCacheStorageMemcache::remove|Other versions of this method]]
+
 
{{SeeAlso:JCacheStorageMemcache::remove}}
+
 
===Examples===
+
===User contributed notes===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
noresultsheader=\n
 
noresultsheader=\n
 
category=JCacheStorageMemcache::remove
 
category=JCacheStorageMemcache::remove
category=CodeExample
+
namespace=CodeExample
 
category=MethodExample
 
category=MethodExample
 
include=*
 
include=*
 +
namespace=CodeExample
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:JCacheStorageMemcache]][[Category:JCacheStorageMemcache::remove]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Latest revision as of 21:28, 24 March 2017

The "API17" 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.

Joomla 11.1 JCacheStorageMemcache::remove[edit]

Description[edit]

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 194 of libraries/joomla/cache/storage/memcache.php
  • Since Joomla 11.1

See also[edit]


User contributed notes[edit]

Code Examples[edit]