0
我有一個購物車陣列,用於我正在構建的小型電子商務網站,並且遇到了一個我無法弄清楚的循環。如果我的購物車陣列(使用不同的ID號)有3種不同的產品(不確定產品數量是否超過2),並且我試圖更新第二個產品的數量,則會導致無限循環並嘗試不斷更新產品作爲新產品,而不是更新現有的產品。PHP無限循環UGH
<?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
}
?>
我只是想要它更新現有產品的數量,而不是將其作爲另一個添加。在此先感謝您的幫助!
這是有點難以察覺的原因..但一個基調,嘗試使用foreach代替while循環使用的foreach是迭代對集合進行了優化。另外我不感覺這個數組(數組(..事物。 – xlordt