Файловый менеджер - Редактировать - /home/easybachat/sangemarmarmarble.com/oc-includes/osclass/classes/Cache.php
Ðазад
<?php if(!defined('ABS_PATH')) exit('ABS_PATH is not loaded. Direct access is not allowed.'); /* * Copyright 2014 Osclass * Copyright 2025 Osclass by OsclassPoint.com * * Osclass maintained & developed by OsclassPoint.com * You may not use this file except in compliance with the License. * You may download copy of Osclass at * * https://osclass-classifieds.com/download * * Do not edit or add to this file if you wish to upgrade Osclass to newer * versions in the future. Software is distributed on an "AS IS" basis, without * warranties or conditions of any kind, either express or implied. Do not remove * this NOTICE section as it contains license information and copyrights. */ define('CACHE_PATH', osc_uploads_path()); /** * This is the simplest cache service on earth. * * @author Osclass * @version 1.0 */ class Cache { private $objectKey; private $expiration; /** * Cache constructor. * * @param $objectKey * @param int $expiration */ public function __construct( $objectKey , $expiration = 900 /* 15 minutes */ ) { $this->objectKey = $objectKey; $this->expiration = $expiration; } public function __destruct() { } /** * @return true if the object is cached and has not expired, false otherwise. */ public function check() { $path = $this->preparePath(); if ( ! file_exists( $path ) ) { return false; } if(time() - filemtime($path) > $this->expiration) { unlink($path); return false; } return true; } /** * Stores the object passed as parameter in the cache backend (filesystem). * * @param $object */ public function store($object) { $serialized = serialize($object); file_put_contents($this->preparePath(), $serialized); } /** * Returns the data of the current cached object. */ public function retrieve() { $content = file_get_contents($this->preparePath()); return unserialize($content); } /** * Constructs the path to object in filesystem. */ private function preparePath() { return CACHE_PATH . $this->objectKey . '.cache'; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.29 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0.31 |
proxy
|
phpinfo
|
ÐаÑтройка