gpt4 book ai didi

php - 缓存库未加载

转载 作者:搜寻专家 更新时间:2023-10-31 20:44:56 25 4
gpt4 key购买 nike

我在 codeigniter(2.1.3) 中加载缓存库时出错。它的意思是这样的:

An Error Was Encountered

Unable to load the requested class: cache

我的代码是这样的

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');

最佳答案

大家好,我得到了这个问题的答案。

最后我制作了一个自定义库并在我的自动加载文件中调用它。它解决了我的问题。

代码在这里

class CallCache  {

public function __construct($config = array())
{
$ci = &get_instance();
$ci->load->driver('cache', array('adapter' => 'apc', 'backup' => 'file'));
}
}

终于感谢上帝

关于php - 缓存库未加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14437106/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com