php文件缓存类

php文件缓存类

<?phpclass Cache{ private $basePth; function Cache($basePth = 'cache') { $this->basePth = $basePth; } function setCache($key, $con) { $path = $this... 阅读详情