Blame | Letzte Änderung | Log anzeigen | RSS feed
--TEST--CacheAPC::read()--SKIPIF--<?phpif (!function_exists('apc_add')) print 'skip APC extension not available';?>--FILE--<?phprequire_once dirname(__FILE__) . '/../cachecore.class.php';require_once dirname(__FILE__) . '/../cacheapc.class.php';$cache = new CacheAPC('test', null, 60);$cache->create('test data');var_dump($cache->read());?>--EXPECT--string(9) "test data"--CLEAN--<?phprequire_once dirname(__FILE__) . '/../cachecore.class.php';require_once dirname(__FILE__) . '/../cacheapc.class.php';$cache = new CacheAPC('test', null, 60);$cache->delete();?>