İlk temizlik tamamlandı bir önceki projeden
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
<?php function get_cache_id($prefix) {
|
||||
$lastId = 0;
|
||||
|
||||
if(Cache::has($prefix)) {
|
||||
$lastId = Cache::get($prefix);
|
||||
}
|
||||
|
||||
return $lastId;
|
||||
}
|
||||
|
||||
function set_cache_id($prefix, $lastId) {
|
||||
Cache::put($prefix, $lastId);
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user