[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: Cache.php
<?php namespace WhichBrowser; use Psr\Cache\CacheItemPoolInterface; trait Cache { private $cache; private $expires; /** * @var boolean $cached Was this result retrieve from the cache? */ public $cached = false; /** * Enable caching of results * * @param object $cache An PSR-6 cache pool (an object that implements Psr\Cache\CacheItemPoolInterface) * @param int $expires Optional the number of seconds after which a cached item expires, default is 15 minutes */ public function setCache($cache, $expires = 900) { $this->cache = $cache; $this->expires = $expires; } /** * Apply cached data to the main Parser object * * @internal * * @param array $data An array with a key for every property it needs to apply */ private function applyCachedData($data) { foreach ($data as $key => $value) { $this->$key = $value; } $this->cached = true; } /** * Retrieve the data that can be cached from the main Parser object * * @internal * * @return array An array with a key for every property that will be cached */ private function retrieveCachedData() { return [ 'browser' => $this->browser, 'engine' => $this->engine, 'os' => $this->os, 'device' => $this->device, 'camouflage' => $this->camouflage, 'features' => $this->features ]; } /** * Retrieve the result from the cache, or analyse and store in the cache * * @internal * * @param array|string $headers An array with all of the headers or a string with just the User-Agent header * * @return boolean did we actually retrieve or analyse results */ private function analyseWithCache($headers, $options = []) { if (isset($options['cache'])) { if (isset($options['cacheExpires'])) { $this->setCache($options['cache'], $options['cacheExpires']); } else { $this->setCache($options['cache']); } } if ($this->cache instanceof CacheItemPoolInterface) { $item = $this->cache->getItem('whichbrowser_' . md5(serialize($headers))); if ($item->isHit()) { $this->applyCachedData($item->get()); } else { $analyser = new Analyser($headers, $options); $analyser->setdata($this); $analyser->analyse(); $item->set($this->retrieveCachedData()); $item->expiresAfter($this->expires); $this->cache->save($item); } 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.88 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