/* 记录浏览历史 */
if (!empty($_COOKIE['history']))
{
if(stripos($_COOKIE['history'].',',$goods_id.',')===false){
$history = explode(',', $_COOKIE['history']);
array_unshift($history, $goods_id); //入栈
while (count($history) > 5) //大于容器容量
{
array_pop($history); //出栈
}
setcookie('history', implode(',', $history), gmtime() + 3600 * 24 * 30);
}
}
else
{
setcookie('history', $goods_id, gmtime() + 3600 * 24 * 30);
}
整站DIV+CSS布局,支持全部浏览器,加载访问速度更快,兼容性更强。 导航管理:不限制个数,支持排序和外联。 幻灯管理:支持文字、链接、不限制个数可以排序。 产品频道:支持独立关键字、关键描述,支持排序。 文章频道:支持独立关键字、关键描述,支持排序。 单页管理:不限制个数,支持简短和详细内容,支持排序。 在线留言:支持回复和审核功能。 友情链接:支持文字和logo链接两种 更新记录: 2013
0
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号