我在我的magento自定义模块中使用session .Below是我的代码
$session = Mage::getSingleton("core/session", array("name"=>"frontend"));
$session->setData("day_filter", 'weeks');
$session->setData("days", '5');
$session->setData("next_delivery_date", '2012-05-12');
Run Code Online (Sandbox Code Playgroud)
上面的代码工作正常,但现在我想取消或破坏所有的价值?能否请您解决如何解除所有设定值的问题?