ecshop浏览历史功能是怎么实现的,就是你浏览了某个商品就会写入cookie,是在哪里执行的呢

2025-04-08 19:11:11
推荐回答(1个)
回答1:

goods.php中

/* 记录浏览历史 */
if (!empty($_COOKIE['ECS']['history']))
{
$history = explode(',', $_COOKIE['ECS']['history']);
array_unshift($history, $goods_id);
$history = array_unique($history);
while (count($history) > $_CFG['history_number'])
{
array_pop($history);
}
setcookie('ECS[history]', implode(',', $history), gmtime() + 3600 * 24 * 30);
}
else
{
setcookie('ECS[history]', $goods_id, gmtime() + 3600 * 24 * 30);
}