API15:JCacheStorageEaccelerator/test
From Joomla! Documentation
Description
Test to see if the cache storage is available.
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
test()
Returns
boolean True on success, false otherwise.
Defined in
libraries/joomla/cache/storage/eaccelerator.php
Importing
jimport( 'joomla.cache.storage.eaccelerator' );
Source Body
function test()
{
return (extension_loaded('eaccelerator') && function_exists('eaccelerator_get'));
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples