Blame | Letzte Änderung | Log anzeigen | RSS feed
--TEST--CacheXCache::update()--SKIPIF--<?phpif (!function_exists('xcache_set')) print 'skip XCache extension not available';?>--FILE--<?phprequire_once dirname(__FILE__) . '/../cachecore.class.php';require_once dirname(__FILE__) . '/../cachexcache.class.php';$cache = new CacheXCache('test', null, 60);$cache->create('test data');var_dump($cache->update('test data updated'));var_dump($cache->update('test data updated'));?>--EXPECT--bool(true)bool(true)--CLEAN--<?phprequire_once dirname(__FILE__) . '/../cachecore.class.php';require_once dirname(__FILE__) . '/../cachexcache.class.php';$cache = new CacheXCache('test', null, 60);$cache->delete();?>