在 codeigniter(2.1.3) 中加载缓存库时出错。它的意思是这样的:
遇到错误
无法加载请求的类:缓存
我的代码看起来像这样
if (!$data['foo'] = $this->cache->file->get('details')) {
$data['foo'] = $this->foo->getdetails();
$this->cache->file->save('details', $data['foo'], 600);
}
我的自动加载文件是这样的:
$autoload['libraries'] = array('database','form_validation','session','driver','cache');