我在更新PHP的$_SESSION
變量的數組元素時遇到問題。這是基本結構:php中的多維數組SESSION
$product = array();
$product['id'] = $id;
$product['type'] = $type;
$product['quantity'] = $quantity;
,然後使用array_push()
功能我插入SESSION變量產品。
array_push($_SESSION['cart'], $product);
現在,這是I M面臨的問題主要部分:
foreach($_SESSION['cart'] as $product){
if($id == $product['id']){
$quantity = $product['quantity'];
$quantity += 1;
$product['quantity'] = $quantity;
}
}
欲$_SESSION['cart']
可變內遞增的產品數量。我怎樣才能做到這一點?