One Hat Cyber Team
Your IP :
216.73.216.182
Server IP :
203.175.9.166
Server :
Linux tanggamus.iixcp.rumahweb.net 5.14.0-427.28.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 2 03:44:10 EDT 2024 x86_64
Server Software :
LiteSpeed
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
cite5577
/
www
/
lib
/
pkp
/
classes
/
cache
/
Edit File:
APCCache.inc.php
<?php /** * @file classes/cache/APCCache.inc.php * * Copyright (c) 2014-2021 Simon Fraser University * Copyright (c) 2000-2021 John Willinsky * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @class APCCache * @ingroup cache * @see GenericCache * * @brief Provides caching based on APC's variable store. */ import('lib.pkp.classes.cache.GenericCache'); class apc_false {}; class APCCache extends GenericCache { /** * Instantiate a cache. * @param $context string * @param $cacheId mixed * @param $fallback array PKP-style callback */ function __construct($context, $cacheId, $fallback) { parent::__construct($context, $cacheId, $fallback); } /** * Flush the cache. */ function flush() { $prefix = INDEX_FILE_LOCATION . ':' . $this->getContext() . ':' . $this->getCacheId(); $info = apc_cache_info('user'); foreach ($info['cache_list'] as $entry) { if (substr($entry['info'], 0, strlen($prefix)) == $prefix) apc_delete($entry['info']); } } /** * Get an object from the cache. * @param $id mixed * @return mixed */ function getCache($id) { $key = INDEX_FILE_LOCATION . ':'. $this->getContext() . ':' . $this->getCacheId() . ':' . $id; $returner = unserialize(apc_fetch($key)); if ($returner === false) return $this->cacheMiss; if (get_class($returner) === 'apc_false') $returner = false; return $returner; } /** * Set an object in the cache. This function should be overridden * by subclasses. * @param $id mixed * @param $value mixed */ function setCache($id, $value) { $key = INDEX_FILE_LOCATION . ':'. $this->getContext() . ':' . $this->getCacheId() . ':' . $id; if ($value === false) $value = new apc_false; apc_store($key, serialize($value)); } /** * Get the time at which the data was cached. * Not implemented in this type of cache. * @return null */ function getCacheTime() { return null; } /** * Set the entire contents of the cache. * WARNING: THIS DOES NOT FLUSH THE CACHE FIRST! * @param $contents array Complete cache contents. */ function setEntireCache($contents) { foreach ($contents as $id => $value) { $this->setCache($id, $value); } } }
Simpan