私は本当にこれで立ち往生しています。次のような配列内の配列です。
Array ( [0] => Array ( [item] => product1 [unitprice] => 15 [quantity] => 1 ) [1] => Array ( [item] => product2 [unitprice] => 15 [quantity] => 1 ) )
以下を使用して特定のアイテムを削除しようとしました:
$pid=$_GET['id']; (where id = product1)
$delete=array_splice($_SESSION['cart'], array_search($id, $_SESSION['cart']), 1);
unset($delete);
print_r($_SESSION['cart']);
これにより、アイテムがランダムに削除されるようです。どんな助けでも大歓迎です