JCacheStorageEaccelerator/test
From Joomla! Documentation
< API16:JCacheStorageEaccelerator
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.
Contents
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/eaccelerator.php
Importing
jimport( 'joomla.cache.storage.eaccelerator' );
Source Body
function test()
{
return (extension_loaded('eaccelerator') && function_exists('eaccelerator_get'));
}
<! removed transcluded page call, red link never existed >