检查多个$ _SESSION是否为空

时间:2011-07-19 01:04:01

标签: php session loops

我有多个具有不同名称的$_SESSION个变量(例如$_SESSION['blue'], _SESSION['purple'], _SESSION['cream'] etc...我有什么方法可以使用循环检查哪些是空的,因此忽略?

2 个答案:

答案 0 :(得分:2)

foreach ($_SESSION as $key => $value) { 
    if (empty($value)) {
         // ignore 
    }
}

答案 1 :(得分:0)

您可以使用foreach loop

foreach ($_SESSION as $key => $value)
{
  // This goes through the keys that exist.
}