问题删除会话变量

时间:2013-07-15 23:58:46

标签: php session unset

我在删除/取消设置会话变量时遇到问题。

例如,如果购物车中有3件商品 1,2,3 ,我删除了所有这些商品。它们应该从会话中删除,但它们是隐藏的。

取消设置两个变量 这是我取消设置2个会话变量cart_arrayminicart

的地方
 <?php
      if (isset($_POST['index_to_remove']) && (!empty($_SESSION["cart_array"]["minicart"]))) {
        // Access the array and run code to remove that array index
        $key_to_remove = $_POST['index_to_remove'];
        if (count($_SESSION["cart_array"]["minicart"]) <= 1) {
            unset($_SESSION["cart_array"]["minicart"]);
        } else {
            unset($_SESSION["cart_array"]["minicart"]["$key_to_remove"]);
            sort($_SESSION["cart_array"]["minicart"]);
        }
    }
?>

HTML

   echo '<form action="cart.php" method="post">
            <input name="deleteBtn' . $item_id . '" 
            type="submit" value="Delete" />
            <input name="index_to_remove" 
            type="hidden" value="' . $i . '" />
            </form>';

同样在这个header.php页面中,我回应了会话变量cart_arrayminicart

我的问题是/问题

如果您查看未设置的变量,则意味着根据分配给这些会话的itemid取消设置会话变量cary_arrayminicart。 现在,如果我点击删除按钮,这将删除购物车中的商品但是为什么不从会话中删除会话变量cary_arrayminicart

我知道它已被删除,因为下面的代码显示,而不是会话变量被删除(未设置)不是

if(isset($_SESSION ['cart_array']) && !empty($_SESSION['cart_array'])) {
   echo ("I am still here");
    }

2 个答案:

答案 0 :(得分:2)

试试这个:

$_SESSION['cart_array'] = Array();//This should empty the cart.

然后只测试为空。原因很可能是由于PHP的GC工作方式。请阅读this answer以获得更好的解释。

答案 1 :(得分:2)

当你这样做时:

unset($_SESSION['cart_array']['minicart']);

你只是取消了“minicart”,而不是“cart_array”。

如果你想取消设置“cart_array”和“minicart”,你应该这样做:

unset($_SESSION['cart_array']);

$_SESSION['cart_array'] = array();

要测试数组是否为空,只需:

if ($_SESSION['cart_array']):
else:
endif;