一、加缓存:php
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>></span> <a href="/event.php">活动专区</a>'); // 当前位置 $list = event_list(); $smarty->assign('event_list', $list); } /* 显示模板 */ $smarty->display('event.dwt',$cache_id); }
二、清除缓存缓存
clear_cache_files();