Ben çok boyutlu bir diziye yeni öğeler eklemek için bu kodu vardır:
$this->shopcart[] = array(productID => $productID, items => $items);
Peki nasıl ben bu diziden bir öğeyi kaldırabilirim? Bu kod çalıştı, ama onun değil çalışma:
public function RemoveItem($item)
{
foreach($this->shopcart as $key)
{
if($key['productID'] == $item)
{
unset($this->shopcart[$key]);
}
}
}
Ben bu hatayı alıyorum:
- Warning: in unset Yasadışı ofset tip C:\xampplite\htdocs\katrinelund\classes\TillRepository.php on line 50 />