我添加到我的购物车是这样的:
function addItem($id, $qty="1"){
if (($this->isInCart($id)) == false){
$this->cart[] = array( 'id' => $id, 'qty' => $qty);
} else{
$this->cart[$id]['qty']++;
}
}
如果一个项目已经在我的购物车中,我只需告诉该方法将当前 $id 加一,但这似乎不适用于这些调用:
$basket->addItem('monkey','200');
$basket->addItem('dog', '10');
$basket->addItem('dog');
在第二次添加狗项时,以下函数仅报告我的篮子中只有 10 条狗:
function numberOfProduct($id){
unset($number);
foreach($this->cart as $n ){
if ($n['id'] == $id){
$number = $number + $n['qty'];
}
}
return $number;
}
我确定问题在于我在 addToBasket 方法中递增数组,但是当我在程序编码中使用完全相同的方法时,它可以正常工作。
我真的很卡。
编辑:按要求在购物车方法中
function isInCart($id){
$inCart=false;
$itemsInCart=count($this->cart);
if ($itemsInCart > 0){
foreach($this->cart as $cart){
if ($cart['id']==$id){
return $inCart=true;
break;
}
}
}
return $inCart;
}