2019独角兽企业重金招聘Python工程师标准>>>
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>></span><a href="/event.php">活动专区</a>'); // 当前位置$list = event_list();$smarty->assign('event_list', $list);}/* 显示模板 */$smarty->display('event.dwt',$cache_id);
}
2、清除缓存
clear_cache_files();