PHP 会话数组 - 存储具有不同值的相同项目

PHP Session Array - store same item with different values

我正在研究 PHP 购物车系统,但遇到了问题。

问题:

当用户添加一个项目然后再次添加相同项目但具有不同值(例如(不同尺寸或数量))时,购物车会使用用户选择的新值更新该条目。之前的详细信息被删除。

我一直在寻找的解决方案

如果用户添加任何项目,然后想要添加相同的项目但有不同的要求,则应作为单独的条目添加到购物车会话中。(仅当特定变量发生更改时,例如:单个产品但尺寸不同)。

如何在我当前的代码中执行此操作?

购物车

//add item in shopping cart
if(isset($_POST["type"]) && $_POST["type"]=='add')
{
    $product_code   = filter_var($_POST["product_code"], FILTER_SANITIZE_STRING); //product code
    $product_size   = filter_var($_POST["product_size"], FILTER_SANITIZE_NUMBER_INT); //product size
    $product_qty    = filter_var($_POST["product_qty"], FILTER_SANITIZE_NUMBER_INT); //product quantity
    $return_url     = base64_decode($_POST["return_url"]); //return url


    //MySqli query - get details of item from db using product code
    $results = $connection->query("SELECT * FROM products WHERE prod_code='$product_code' LIMIT 1");
    $obj = $results->fetch_object();

    if ($results) { //we have the product info 

        //prepare array for the session variable
        $new_product = array(array('name'=>$obj->product_name, 'code'=>$product_code, 'size'=>$product_size, 'qty'=>$product_qty, 'price'=>$obj->price));

        if(isset($_SESSION["products"])) //if we have the session
        {
            $found = false; //set found item to false

            foreach ($_SESSION["products"] as $cart_itm) //loop through session array
            {
                if($cart_itm["code"] == $product_code){ //the item exist in array

                    $product[] = array('name'=>$cart_itm["name"], 'code'=>$cart_itm["code"], 'size'=>$product_size, 'qty'=>$product_qty, 'price'=>$cart_itm["price"]);
                    $found = true;
                }else{
                    //item doesn't exist in the list, just retrieve old info and prepare array for session var
                    $product[] = array('name'=>$cart_itm["name"], 'code'=>$cart_itm["code"], 'size'=>$cart_itm["size"], 'qty'=>$cart_itm["qty"], 'price'=>$cart_itm["price"]);
                }
            }

            if($found == false) //we didn't find item in array
            {
                //add new user item in array
                $_SESSION["products"] = array_merge($product, $new_product);
            }else{
                //found user item in array list, and increased the quantity
                $_SESSION["products"] = $product;
            }

        }else{
            //create a new session var if does not exist
            $_SESSION["products"] = $new_product;
        }

    }

    //redirect back to original page
    header('Location:'.$return_url);
}

期待一些有用的答案。

谢谢

***** 更新 ******

从购物车中删除产品的代码:

//remove item from shopping cart
if(isset($_GET["removep"]) && isset($_GET["return_url"]) && isset($_SESSION["products"]))
{
    $product_code   = $_GET["removep"]; //get the product code to remove
    $return_url     = base64_decode($_GET["return_url"]); //get return url


    foreach ($_SESSION["products"] as $cart_itm) //loop through session array var
    {
        //if($cart_itm["code"]!=$product_code){ //item does,t exist in the list
        if($cart_itm["code"] != $product_code && $cart_itm["size"] != $product_size){
            $product[] = array(
            'name'=>$cart_itm["name"],
            'code'=>$cart_itm["code"],
            'size'=>$cart_itm["size"],
            'qty'=>$cart_itm["qty"],
            'price'=>$cart_itm["price"]
            );
        }

        //create a new product list for cart
        $_SESSION["products"] = $product;
    }

    //redirect back to original page
    header('Location:'.$return_url);
}

您使用的if条件是您犯的错误。试试这个

if($cart_itm["code"] == $product_code && $cart_itm["size"] == $product_size)

而不是

if($cart_itm["code"] == $product_code)

检查数量的方法不是很好的做法,因为您可以在现有条目中单独编辑数量。

您需要计算出唯一的购物车商品代码才能使其正常工作。您可以将产品代码与尺寸或数量结合起来,或者使用类似 GUID 的东西来存储单独的购物车项目。

组合键在更改尺寸或数量时出现问题。使用 GUID 需要一些工作,但它是一个可行且可靠的解决方案。

尝试在开头将 $product 声明为数组。

$product = array();

希望对您有所帮助。