分类

链接

2012 年 11 月
 1234
567891011
12131415161718
19202122232425
2627282930  

近期文章

热门标签

新人福利,免费薅羊毛

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