Jump to content

check if any values are in a $_SESSION


jasonc

Recommended Posts

I have been using the code below to see if the session is set but this does not actually tell me if there is anything in it.  How to I find out if there are any values or content in the session even if the session is already set or not.

if (isset($_SESSION['cart'])) {
// do something
}

Link to comment
https://forums.phpfreaks.com/topic/242046-check-if-any-values-are-in-a-_session/
Share on other sites

You can use the empty() function as Adam mentioned either on separate session variables or to the whole $_SESSION array to see if theres anything. If you need to check just if session exists you can use session_id() for that. This will return empty string if there is no session or the session id if session exists.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.