ecshop 缓存

1、加缓存:

if ($act == 'list')
{
    $cache_id = 'event_list';
    /* 如果没有缓存,生成缓存 */
    if (!$smarty->is_cached('event.dwt', $cache_id))
    {
	    $smarty->assign('page_title', '限量抢购_'.$GLOBALS['_CFG']['shop_title']);     // 页面标题
	    $smarty->assign('ur_here', 
	    		'<a href="/">首页</a>
				<span>&gt;</span>
				<a href="/event.php">活动专区</a>');   // 当前位置
	    $list = event_list();
	    $smarty->assign('event_list', $list);
    }
    /* 显示模板 */
    $smarty->display('event.dwt',$cache_id);
}

2、清除缓存

clear_cache_files();


你可能感兴趣的:(ecshop 缓存)