分类

链接

2025 年 8 月
 123
45678910
11121314151617
18192021222324
25262728293031

近期文章

热门标签

新人福利,免费薅羊毛

PHP缓存类

//PHP缓存类 <?php class Cache {     private $cache_path;//path for the cache     private $cache_expire;//seconds that the cache expires       //cache constructor, optional expiring time and cache path     public function Cache($exp_time=3600,$path="cache/"){         $this->cache_expire=$exp_time;         $this->cache_path=$path;     }       //returns the filename for the cache     private function fileName($key){         return $this->cache_path.md5($key);   ...

PHP 暂无评论 阅读(1,791)