Вход Регистрация
Файл: upload-2031-rs1/system/library/cache/apc.php
Строк: 13
<?php
namespace Cache;
class 
APC {
    private 
$expire;
    private 
$cache;

    public function 
__construct($expire) {
        
$this->expire $expire;
    }

    public function 
get($key) {
        return 
apc_fetch(CACHE_PREFIX $key);
    }

    public function 
set($key$value) {
        return 
apc_store(CACHE_PREFIX $key$value$this->expire);
    }

    public function 
delete($key) {
        
apc_delete(CACHE_PREFIX $key);
    }
}
Онлайн: 1
Реклама