php - 更新多维数组 (PHP) 中的特定键

标签 php algorithm multidimensional-array logic

我在更新我创建的多维数组中的数量值时遇到了一些困难,真的希望你能帮助我纠正我出错的地方;

.

背景

我有两个“项目”,它们都有一个简单的表单标签,后跟一个具有唯一值的隐藏输入字段(第一个项目为 1,第二个项目为 2)。 该按钮将使用 POST 方法指向同一页面。

然后页面右侧的 div 将加载一个“篮子”,它将使用这些帖子值并将它们添加到一个数组中。

当再次使用“添加”按钮时,值应该更新为 +1 而不是创建另一个子数组。

.

目前正在发生什么

目前,当我第一次点击“添加”时,它会按预期添加数组;

Result 1

但是,当第二次单击“添加”时,它会添加第二个数组而不是 +1 的数量。

Result 2

第三次单击“添加”时,它确实找到了原始值并按照我的预期进行了更新,如果我再次单击它会继续更新数量

Result 3

我好像是第二次点击“添加”。

.

脚本

<?php session_start();

function in_array_r($needle, $haystack, $strict = false) {
    foreach ($haystack as $item) {
        if (($strict ? $item === $needle : $item == $needle) || (is_array($item) && in_array_r($needle, $item, $strict))) {
            return true;
        }
    }

    return false;
}

if (ISSET($_POST["prod"]))
{
    if(in_array($_POST["prod"],$_SESSION["cart"])==TRUE)
    {
      $_SESSION["cart"][0] = 
      array($_POST["prod"],$_POST["name"],$_SESSION["cart"][0][2]+1);
    }
    else{
         echo 'running else';
         $_SESSION["cart"]=array($_POST["prod"],$_POST["name"],1);}}

         if ($_POST['e']=='1')
         {
           $_SESSION['cart'] = '';
         }
        echo '<br /><br />';
print_r($_SESSION["cart"]);
}

样本表格

<form action="test.php" method="post" enctype="application/x-www-form-urlencoded">
MAST-O-MIR<br/>
img<br/>
£2.00<br/>
        <input type="hidden" value="1" name="prod" />
        <input type="hidden" value="MAST-O-MIR" name="name" />
    <button class="plus-btn" type="Submit">Add</button>
</form>

此外,您可能会从我的脚本中注意到,当您“添加”第二个项目时,它实际上会通过从头创建数组来覆盖第一个项目,所以如果您能帮助我解决其中一个或两个问题,我真的将不胜感激专业知识!

非常感谢大家!

最佳答案

我尝试调试您的代码,可能的解决方案如下:

<?php

 session_start();

if(!isset($_SESSION["cart"]))
{
    $_SESSION["cart"]=[];
}

if (isset($_POST["prod"]))
{
    $prod_id=$_POST["prod"];
    //let suppose $_POST['prod'] is your item id
    $found=false;
    for($i=0;$i<count($_SESSION['cart']);$i++)
    {
        if(isset($_SESSION['cart'][$prod_id]))
        {
            echo "found! so add +1";
            $_SESSION['cart'][$prod_id][2]+=1;
            $found=true;
            break;
        }
    }
    if($found==false)
    {
        echo 'not found! so create a new item';
        $_SESSION["cart"][$prod_id]=array($_POST["prod"],$_POST["name"],1);
    }
}

         if (isset($_POST['e']) && $_POST['e']=='1')
         {
             $_SESSION['cart'] = '';
         }

        echo '<br /><br />';
print_r($_SESSION["cart"]);

?>
<form action="cart.php" method="post" enctype="application/x-www-form-urlencoded">
    MAST-O-MIR<br/>
    img<br/>
    £2.00<br/>
    <input type="hidden" value="1" name="prod" />
    <input type="hidden" value="MAST-O-MIR" name="name" />
    <button class="plus-btn" type="Submit">Add</button>
</form>
<form action="cart.php" method="post" enctype="application/x-www-form-urlencoded">
    MAST-O-MIR<br/>
    img<br/>
    £2.00<br/>
    <input type="hidden" value="2" name="prod" />
    <input type="hidden" value="MAST-O-MIR" name="name" />
    <button class="plus-btn" type="Submit">Add</button>
</form>

另一种方法是使用关联数组。 以下代码使用商品名称作为键在 $_SESSION 中创建购物车数组(因此您不需要遍历购物车数组来查找商品)和 一个数组,其属性为名称=>每个项目的值。

session_start();

if(!isset($_SESSION["cart"]))
{
    $_SESSION["cart"]=[];
}
//let's suppose you have unique names for items
if (isset($_POST["prod"]))
{
    $name=$_POST["name"];
    if(isset($_SESSION['cart'][$name]))
    {
        echo "found! so add +1";
        $_SESSION['cart'][$name]['quantity']+=1;
    }
    else
    {
       echo 'not found! so create a new item';
       $_SESSION["cart"][$name]=array("id"=>$_POST["prod"],"name"=>$_POST["name"],"quantity"=>1);
    }
}

         if (isset($_POST['e']) && $_POST['e']=='1')
         {
             $_SESSION['cart'] =[];
         }

        echo '<br /><br />';
print_r($_SESSION["cart"]);

?>
<form action="cart2.php" method="post" enctype="application/x-www-form-urlencoded">
    MAST-O-MIR<br/>
    img<br/>
    £2.00<br/>
    <input type="hidden" value="1" name="prod" />
    <input type="hidden" value="MAST-O-MIR" name="name" />
    <button class="plus-btn" type="Submit">Add</button>
</form>
<form action="cart2.php" method="post" enctype="application/x-www-form-urlencoded">
    MAST-O-MIR<br/>
    img<br/>
    £2.00<br/>
    <input type="hidden" value="2" name="prod" />
    <input type="hidden" value="MAST-OMIR" name="name" />
    <button class="plus-btn" type="Submit">Add</button>
</form>

关于php - 更新多维数组 (PHP) 中的特定键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53520086/

相关文章:

php - 使用php如何检查pdf文件内容是有效还是无效

php - 使用 Zend Framework 忽略文件上传的空实例?文件因此无法上传

php - 使用PHP执行cmd命令

c++ - 内存映射和排序文件后字节下落不明

c++ - 速度增益 : Converting 2D array to 1D array

php - 用于解析斜体文本的正则表达式?

algorithm - 包含所有给定元素的最小数量的容器

c - 关于如何找到根据给定条件标记给定数组的所有元素的最少步数的任何提示?

java - 在二维数组中打印字母?第一个字母不显示

javascript - 根据数值对嵌套数组进行排名