Файл: _core/_class/cache_tkcom.php
Строк: 21
<?php
# mark core v1.0
# author Drk in
# date 24.10.19
# class cache tkcom
class cache_tkcom {
public static function get($ID) # get
{
$file = cache."_tkcom/{$ID}.data";
$cache = @file_get_contents($file);
return unserialize($cache);
}
public static function save($ID) # save
{
$file = cache."_tkcom/{$ID}.data";
$cache = DB :: $dbh -> queryFetch("SELECT * FROM tkcom WHERE id = ? LIMIT 1;", array($ID));
$cache = serialize($cache);
@file_put_contents($file, $cache);
}
public static function check($ID) # check
{
$file = cache."_tkcom/{$ID}.data";
if(!file_exists($file)):
self::save($ID);
endif;
return self::get($ID);
}
public static function ch($ID) # check file
{
$file = cache."_tkcom/{$ID}.data";
if(file_exists($file)):
return true;
else:
return false;
endif;
}
}
?>