![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/laminas/laminas-session/src/SaveHandler/ |
<?php namespace Laminas\Session\SaveHandler; use Laminas\Cache\Storage\ClearExpiredInterface as ClearExpiredCacheStorage; use Laminas\Cache\Storage\StorageInterface as CacheStorage; use ReturnTypeWillChange; /** * Cache session save handler * * @see ReturnTypeWillChange */ class Cache implements SaveHandlerInterface { /** * Session Save Path * * @var string */ protected $sessionSavePath; /** * Session Name * * @var string */ protected $sessionName; /** * The cache storage * * @var CacheStorage */ protected $cacheStorage; /** * Constructor */ public function __construct(CacheStorage $cacheStorage) { $this->setCacheStorage($cacheStorage); } /** * Open Session * * @param string $savePath * @param string $name * @return bool */ #[ReturnTypeWillChange] public function open($savePath, $name) { // @todo figure out if we want to use these $this->sessionSavePath = $savePath; $this->sessionName = $name; return true; } /** * Close session * * @return bool */ #[ReturnTypeWillChange] public function close() { return true; } /** * Read session data * * @param string $id * @return string */ #[ReturnTypeWillChange] public function read($id) { return (string) $this->getCacheStorage()->getItem($id); } /** * Write session data * * @param string $id * @param string $data * @return bool */ #[ReturnTypeWillChange] public function write($id, $data) { return $this->getCacheStorage()->setItem($id, $data); } /** * Destroy session * * @param string $id * @return bool */ #[ReturnTypeWillChange] public function destroy($id) { $this->getCacheStorage()->getItem($id, $exists); if (! (bool) $exists) { return true; } return (bool) $this->getCacheStorage()->removeItem($id); } /** * Garbage Collection * * @param int $maxlifetime * @return bool */ #[ReturnTypeWillChange] public function gc($maxlifetime) { $cache = $this->getCacheStorage(); if ($cache instanceof ClearExpiredCacheStorage) { return $cache->clearExpired(); } return true; } /** * Set cache storage * * @return Cache */ public function setCacheStorage(CacheStorage $cacheStorage) { $this->cacheStorage = $cacheStorage; return $this; } /** * Get cache storage * * @return CacheStorage */ public function getCacheStorage() { return $this->cacheStorage; } /** * @deprecated Misspelled method - use getCacheStorage() instead * * @return CacheStorage */ public function getCacheStorge() { return $this->getCacheStorage(); } }