我正在创建一个$item
我想推送到的数组$_SESSION['cart']
。构建我的item
数组后,我正在尝试:
$_SESSION['cart'][] = $item[$item_id];
参考: 我可以在 php 中的 SESSION 数组上使用 array_push 吗?
但是,我的购物车会话变量不断被覆盖,而不是被添加到。还有其他建议吗?
根据马克的要求:
第一次运行:
Notice: Undefined variable: _SESSION in C:\inetpub\wwwroot\domain\store\cart.php on line 5
NULL array(3) { ["title"]=> string(37) "PA State and Federal Laminated Poster" ["price"]=> string(5) "55.95" ["qty"]=> string(1) "3" }
第二次:
Notice: Undefined variable: _SESSION in C:\inetpub\wwwroot\domain\store\cart.php on line 5
NULL array(3) { ["title"]=> string(53) "PA State and Federal Laminated Poster SPANISH Edition" ["price"]=> string(5) "55.95" ["qty"]=> string(1) "1" }