由于项目需要,写了一个php文件缓存类,如果不使用命名空间,请把namespace那行注释


使用方法如下

$cache = \tool\cache::factory('test',['array'=>'123','test'=>'bbbb']); //默认2小时过期时间写入
$cache = \tool\cache::factory('test',['array'=>'123','test'=>'bbbb',24]); //24小时过期时间写入
$cache = \tool\cache::factory('test',['array'=>'123','test'=>'bbbb','','mydir']); //默认2小时写入根目录下的mydir目录
$cache = \tool\cache::factory('test'); //读取
\tool\cache::factory('test',NULL); //删除

Comments are closed.

Post Navigation