2024-01-26 09:39:36 +08:00

14 lines
222 B
PHP
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* 缓存接口如果不想使用yac缓存需要自己去使用这个接口
*/
interface iCache
{
//获取缓存
public function getCache($key);
//更新缓存
public function setCache($key,$var);
}
?>