API17

Difference between revisions of "JCache::get"

From Joomla! Documentation

(Layout updates)
m (→‎See also: moving preparation)
(3 intermediate revisions by 2 users not shown)
Line 8: Line 8:
 
<nowiki>[</nowiki>[[Description:JCache::get|Edit Descripton]]<nowiki>]</nowiki>
 
<nowiki>[</nowiki>[[Description:JCache::get|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
</span>
===Since===
 
{{JVer|11.1 }}
 
===Synopsis===
 
 
<source lang="php">
 
<source lang="php">
public JCache::get ($id, $group=null)
+
public function get (
 +
        $id
 +
        $group=null
 +
)
 
</source>
 
</source>
 
{| class="wikitable"
 
{| class="wikitable"
Line 32: Line 32:
 
|-
 
|-
 
|}
 
|}
===Returns===
+
* '''Returns''' mixed Boolean false on failure or a cached data string
mixed Boolean false on failure or a cached data string
+
* '''Defined''' on line 160 of libraries/joomla/cache/cache.php
===Defined in===
+
* '''Since''' {{JVer|11.1 }}
libraries/joomla/cache/cache.php (line 160)
 
* see source code in [[jplatform:cache/cache.php#cl-160|BitBucket]]
 
===Referenced by===
 
 
===See also===
 
===See also===
 +
* {{JVer|11.1}} '''JCache::get source code''' on [[jplatform:cache/cache.php#cl-152|BitBucket]]
 +
* {{JVer|11.1}} Class [[API17:JCache|JCache]]
 +
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Cache|Cache]]
 +
* [[API17:JCache::get|Other versions of JCache::get]]
 +
{{SeeAlso:JCache::get}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JCache::get|Edit See Also]]<nowiki>]</nowiki>
 
<nowiki>[</nowiki>[[SeeAlso:JCache::get|Edit See Also]]<nowiki>]</nowiki>
 
</span>
 
</span>
* [[JCache/11.1|JCache]]
+
===User contributed notes===
* [[JCache::get|Other versions of this method]]
 
{{SeeAlso:JCache::get}}
 
===Examples===
 
 
<CodeExamplesForm />
 
<CodeExamplesForm />
 
<dpl>
 
<dpl>
Line 53: Line 52:
 
category=MethodExample
 
category=MethodExample
 
include=*
 
include=*
 +
namespace=CodeExample
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:JCache]][[Category:JCache::get]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Revision as of 19:48, 11 May 2013

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 JCache::get[edit]

Description[edit]

Get cached data by id and group.

Template:Description:JCache::get [Edit Descripton]

public function get (
        $id
        $group=null
)
Parameter Type Default Description
$id string The cache data id
$group string null The cache data group
  • Returns mixed Boolean false on failure or a cached data string
  • Defined on line 160 of libraries/joomla/cache/cache.php
  • Since Joomla 11.1

See also[edit]

Template:SeeAlso:JCache::get [Edit See Also]

User contributed notes[edit]

<CodeExamplesForm />