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