一切都很完美,但是当购物车中有更多的商品..并且任何商品的数量(列表中的最后一项除外)都会改变,下面的代码会进入无限循环,我已经通过放置验证了它其中有print_r语句。
进入无限循环的代码部分:
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) {
print_r($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
}
P.S。
这是添加第一项时数组的初始化方式。
$_SESSION["cart_array"] = array(0 => array("item_id" => $pid, "quantity" => 1));
如果需要任何其他细节,请告诉我..
更新:假设购物车中有三件商品。我改变了第3项的数量。这行得通。 但是如果我改变第二项的数量,脚本将达到最大执行时间,第二项和第三项将在购物车中无限重复。
答案 0 :(得分:2)
foreach ($_SESSION["cart_array"] as $item_key => $each_item) {
if ($item_to_adjust == $each_item["item_id"]) {
$_SESSION["cart_array"][$item_key]["quantity"] = $quantity;
}
}
这仍然在修改循环内的数组(不是很酷),但它不会弄乱索引。