一、加緩存: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();