mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
15 lines
358 B
PHP
15 lines
358 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
interface base_interface_cache{
|
||
|
||
public function store($key, $value);
|
||
public function fetch($key, &$result);
|
||
public function set_modified($type, $key, $time=null);
|
||
public function get_modified($type, $key);
|
||
}
|