Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个简单的 PHP 代码,应该从数组中删除给定的键($item - 并传递)。会话在那里,项目也在那里,但每次尝试整个会话都会被清除。
$_SESSION['myFavorites'] = array(); if (in_array("$item", $_SESSION['myFavorites'])) { unset($_SESSION['myFavorites'][$item]); }
任何帮助都可能让我重新理清思路。希望有人能告诉我我在这里做错了什么。
$_SESSION['myFavorites'] = array(); if (array_key_exists($item, $_SESSION['myFavorites'])) { unset($_SESSION['myFavorites'][$item]); }