CI的页面缓存: $this->output->cache(15); 表示15分钟更新一次缓存. 但如果需要手工清除,只能FTP上去删除cache文件夹内的文件 如下代码可以清除指定cache: PHP $uri = $this->config->item('base_url'). $this->config->item('index_page'). $this->uri->uri_string(); //得出cache文件的文件名 $cacheName = md5($uri); $this->_deleteCache($cache_name); //删除cache文件函数 function _deleteCache($cache_name) { $path = $this->config->item('cache_path'); $cache_path = ($path == '') ? BASEPATH.'cache/' : $path; $cache_path .= $cache_name; if(file_exists($cache_path)) { touch($cache_path); unlink($cache_path); }else{ return false; } echo $cache_path; }