As the manual says:
Note: The Session class does not utilize native PHP sessions. It generates its own session data, offering more flexibility for developers.
But when I store some data using $this->session->set_userdata(array('sample_key' => 'sample_value'));
, in phpinfo()
I can find sample_key
and sample_value
in that.
I hoped that the part
does not utilize native PHP sessions
to be meaning that it hides the session variables from phpinfo()
.
I'd always thought that it might be a security lack. Could it be?
As it seems, the values are urlencode
ed.