API16

Difference between revisions of "JCacheStorageEaccelerator/get"

From Joomla! Documentation

< API16:JCacheStorageEaccelerator
(New page: ===Description=== Get cached data by id and group <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<now...)
 
m (preparing for archive only)
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
Get cached data by id and group
 
Get cached data by id and group
  
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JCacheStorageEaccelerator/get|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
  
{{Description:JCacheStorageEaccelerator/get}}
+
 
 +
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 53: Line 51:
 
</source>
 
</source>
  
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JCacheStorageEaccelerator/get|Edit See Also]]<nowiki>]</nowiki>
+
<! removed transcluded page call, red link never existed >
</span>
 
{{SeeAlso:JCacheStorageEaccelerator/get}}
 
  
 
===Examples===
 
===Examples===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
  noresultsheader=\n
 
  noresultsheader=\n
 
  category=get
 
  category=get
 
  category=JCacheStorageEaccelerator
 
  category=JCacheStorageEaccelerator
  category=CodeExample
+
  namespace=CodeExample
 
  category=MethodExample
 
  category=MethodExample
 
  include=*
 
  include=*
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Latest revision as of 20:23, 24 March 2017

The "API16" 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]

Get cached data by id and group


<! removed transcluded page call, red link never existed >

Syntax[edit]

get($id, $group, $checkTime)
Parameter Name Default Value Description
$id $id The cache data id
$group $group The cache data group
$checkTime $checkTime True to verify cache time expiration threshold

Returns[edit]

mixed Boolean false on failure or a cached data string

Defined in[edit]

libraries/joomla/cache/storage/eaccelerator.php

Importing[edit]

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

Source Body[edit]

function get($id, $group, $checkTime)
{
        $cache_id = $this->_getCacheId($id, $group);
        $this->_setExpire($cache_id);
        $cache_content = eaccelerator_get($cache_id);
        if ($cache_content === null)
        {
                return false;
        }
        return $cache_content;
}


<! removed transcluded page call, red link never existed >

Examples[edit]

Code Examples[edit]