$time + $ttl, 'mtime' => $time, 'data' => $data ); } // ------------------------------------------------------------------------ /** * is_supported() * * Check to see if APC is available on this system, bail if it isn't. */ public function is_supported() { if ( ! extension_loaded('apc') OR ini_get('apc.enabled') != "1") { log_message('error', 'The APC PHP extension must be loaded to use APC Cache.'); return FALSE; } return TRUE; } } /* End of file Cache_apc.php */ /* Location: ./system/libraries/Cache/drivers/Cache_apc.php */