分类目录

链接

2024 年 4 月
1234567
891011121314
15161718192021
22232425262728
2930  

近期文章

热门标签

新人福利,免费薅羊毛

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,666)