我使用 CodeIgniter。我的页面总是有一部分是缓存,无法通过浏览器中的 Ctrl+F5 删除。当我在视图中更改页面名称时,它起作用了 !!!? 如何清除 CodeIgniter 中的页面缓存?
我使用 CodeIgniter。我的页面的一部分总是缓存,无法 Ctrl+F5
在浏览器中删除。当我在视图中更改名称页面时,它起作用了 !!!?
如何清除 CodeIgniter 中的页面缓存?
function delete_cache($uri_string=null)
{
$CI =& get_instance();
$path = $CI->config->item('cache_path');
$path = rtrim($path, DIRECTORY_SEPARATOR);
$cache_path = ($path == '') ? APPPATH.'cache/' : $path;
$uri = $CI->config->item('base_url').
$CI->config->item('index_page').
$uri_string;
$cache_path .= md5($uri);
return unlink($cache_path);
}