Works OK for me:
<?php
$_SESSION['cart'][] = array(
"type" => 'case',
"width" => 111,
"height" => 222,
"qty" => '3'
);
$_SESSION['cart'][] = array(
"type" => 'case',
"width" => 444,
"height" => 555,
"qty" => '6'
);
echo "<pre>".print_r($_SESSION,1)."</pre>\n";
unset($_SESSION['cart'][0]);
echo "<pre>".print_r($_SESSION,1)."</pre>\n";
output:
Array
(
[cart] => Array
(
[0] => Array
(
[type] => case
[width] => 111
[height] => 222
[qty] => 3
)
[1] => Array
(
[type] => case
[width] => 444
[height] => 555
[qty] => 6
)
)
)
Array
(
[cart] => Array
(
[1] => Array
(
[type] => case
[width] => 444
[height] => 555
[qty] => 6
)
)
)