/* 记录浏览历史 */
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);
}
Magento是一套专业开源的PHP电子商务系统。Magento设计得非常灵活,具有模块化架构体系和丰富的功能。易于与第三方应用系统无缝集成。Magento开源网店系统的特点主要分以下几大类,网站管理促销和工具国际化支持SEO搜索引擎优化结账方式运输快递支付方式客户服务用户帐户目录管理目录浏览产品展示分析和报表Magento 1.6 主要包含以下新特性:•持久性购物 - 为不同的
0
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号