API16

API16:JCacheStorageMemcache/test

From Joomla! Documentation

Revision as of 22:39, 22 March 2010 by 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...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

Test to see if the cache storage is available.

[Edit Descripton]

Template:Description:JCacheStorageMemcache/test

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'));
}

[Edit See Also] Template:SeeAlso:JCacheStorageMemcache/test

Examples

<CodeExamplesForm />