我有一个小型电子商务网站的购物车阵列我正在建设并遇到了一个我无法弄清楚的循环。如果我的购物车阵列中有3种不同的产品(不确定产品数量是否与2相关)(具有不同的ID#)并且我尝试更新第二项的数量,则会导致无限循环并尝试不断添加产品作为新产品,而不是更新现有的产品。
<?php
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Section 3 (if user chooses to adjust item quantity)
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
if (isset($_POST['item_to_adjust']) && $_POST['item_to_adjust'] != "") {
// execute some code
$item_to_adjust = $_POST['item_to_adjust'];
$quantity = $_POST['quantity'];
$quantity = preg_replace('#[^0-9]#i', '', $quantity); // filter everything but numbers
if ($quantity >= 100) { $quantity = 99; }
if ($quantity < 1) { $quantity = 1; }
if ($quantity == "") { $quantity = 1; }
$i = 0;
foreach ($_SESSION["cart_array"] as $each_item) {
$i++;
while (list($key, $value) = each($each_item)) {
if ($key == "item_id" && $value == $item_to_adjust) {
// That item is in cart already so let's adjust its quantity using array_splice()
array_splice($_SESSION["cart_array"], $i-1, 1, array(array("item_id" => $item_to_adjust, "quantity" => $quantity)));
} // close if condition
} // close while loop
} // close foreach loop
}
?>
我只是希望它更新现有产品的数量,而不是将其添加为另一个产品。提前感谢您的帮助!
答案 0 :(得分:1)
当你到达array_splice命令时,你可能正在重置数组指针,所以当foreach迭代下一个项目时,它实际上是从第一个项目再次开始。
我建议你做的是,在array_splice之后设置一个标志并打开while循环。然后在下一个foreach迭代之前测试该标志,如果已经设置,则将其中断。
即
array_splice($_SESSION["cart_array"], $i-1, 1, array(array("item_id" => $item_to_adjust, "quantity" => $quantity)));
$breakflag=true;
break;
}
if($breakflag){
break;
}