I looked in the boolean documentation on PHP http://php.net/manual/en/language.types.boolean.php couldn't find anything. I also tried searching for it, and I get returned no results. Search terms I've tried "operator ? php", "true : false" and still get returned "no results"
I saw the example here http://php.net/manual/en/function.session-status.php where the user coder uses it to return true/false statements. So what exactly does
return session_status() === PHP_SESSION_ACTIVE ? TRUE : FALSE;
mean? I understand that === means exact type, but past that I have no idea what ? TRUE : FALSE
is.