Bitrix has sessions
$ session = \ bitrix \ main \ application :: getinstance () - & gt; getsession ();
if (! $ session- & gt; has ('foo'))
{
$ Session- & gt; set ('Foo', 'Bar');
}
echo $ session ['foo']; // BAR.
How in Google Chrome View session value?
Answer 1, Authority 100%
No
from php.net , \ Bitrix \ Main \ Application :: getInstance () - & gt; GetSession ()
is a wrapper over $ _ session
:
sessions are a simple way to store information for individual users with a unique session identifier. This can be used to save the status between page requests. Sessions identifiers are usually sent to the browser through a session cookie and are used to obtain existing session data. The lack of a session identifier or session cookie reports PHP that you need to create a new session and generate a new session identifier.