php使用Session实现简单购物车功能

 一个简单的商城购物车功能。它使用了PHP的会话(Session)来存储购物车数据,通过调用不同的函数来实现添加商品、移除商品、更新商品数量以及清空购物车的功能


session_start();

// 初始化购物车
if (!isset($_SESSION['cart'])) {
    $_SESSION['cart'] = array();
}

// 添加商品到购物车
function addToCart($product_id, $quantity) {
    if (isset($_SESSION['cart'][$product_id])) {
        // 商品已存在购物车中,增加数量
        $_SESSION['cart'][$product_id] += $quantity;
    } else {
        // 商品不存在购物车中,添加到购物车
        $_SESSION['cart'][$product_id] = $quantity;
    }
}

// 从购物车移除商品
function removeFromCart($product_id) {
    if (isset($_SESSION['cart'][$product_id])) {
        unset($_SESSION['cart'][$product_id]);
    }
}

// 更新购物车中商品的数量
function updateQuantity($product_id, $quantity) {
    if (isset($_SESSION['cart'][$product_id])) {
        $_SESSION['cart'][$product_id] = $quantity;
    }
}

// 清空购物车
function clearCart() {
    $_SESSION['cart'] = array();
}

// 获取购物车中的商品列表
function getCart() {
    return $_SESSION['cart'];
}

你可能感兴趣的:(php,乱七八糟,php,笔记)