API16

JCacheStorageMemcache/test: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== Test to see if the cache storage is available. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JCacheStorageMemcache/test|Edit Desc...
 
m preparing for archive only
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
Test to see if the cache storage is available.
Test to see if the cache storage is available.


<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JCacheStorageMemcache/test|Edit Descripton]]<nowiki>]</nowiki>
</span>


{{Description:JCacheStorageMemcache/test}}
 
<! removed transcluded page call, red link never existed >


===Syntax===
===Syntax===
Line 28: Line 26:
</source>
</source>


<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JCacheStorageMemcache/test|Edit See Also]]<nowiki>]</nowiki>
<! removed transcluded page call, red link never existed >
</span>
{{SeeAlso:JCacheStorageMemcache/test}}


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=test
  category=test
  category=JCacheStorageMemcache
  category=JCacheStorageMemcache
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*
  format= ,,,
  format= ,,,
</dpl>
</dpl>
[[Category:Archived pages API16]]

Latest revision as of 01:23, 25 March 2017

Description

Test to see if the cache storage is available.


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

Syntax

test()


Returns

boolean True on success, false otherwise.

Defined in

libraries/joomla/cache/storage/memcache.php

Importing

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

Source Body

function test()
{
        return (extension_loaded('memcache') && class_exists('Memcache'));
}


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

Examples

Code Examples