PHP会话数组-用不同的值存储相同的项



我在一个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);
}

期待一些有用的答案。

感谢

***** UPDATE ******

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

//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();

相关内容

  • 没有找到相关文章

最新更新