简单的php文件缓存类_PHP教程
推荐:PHP判断后缀名和随机命名实例具体请看下文代码示例 form.php html head meta http-equiv = content-type content = text/html charset = utf-8 title UploadImage / title / head body form method = post action = upload.php enctype = multipart/form-data input type = hidden name = MAX_FILE
一个超简单的PHP缓存类代码,使用缓存对于php项目的开发来说特别重要,特别是大型项目,可以大幅提高程序性能。
这个php缓存类的使用方法:
第一步:实例化类
$cache = new Cache();
第二步:设置缓存时间和缓存目录
$cache = new Cache(60, '/any_other_path/');
第一个参数 60 是缓存秒数,第二个参数是缓存路径,根据个人的需要自行配置。
不填写的时候,默认的缓存时间是 3600 秒,缓存的目录是 cache/
3、读取缓存
$value = $cache->get('data_key');
4、写入缓存
$value = $cache->put('data_key', 'data_value');
点击下面的链接,下载这个简单的php环城路的源代码试一下吧!
分享:php多文件上传封装多文件的上传实现 1 利用单文件封装 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 !DOCTYPE html PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http://www.w3.org/TR/html4/loose.dtd html head meta http-equiv= Content-Type content= text/html; charset=UTF-8 title
- 相关链接:
- 教程说明:
PHP教程-简单的php文件缓存类。