Welcome Guest, Not a member yet? Register   Sign In
How to display all session variables
#3

[eluser]Cristian Gilè[/eluser]
$this->session() is not valid!

If you want to print the object content the right way is:
Code:
print_r($this->session);

without parentheses.

To extract a single element you could use the element function in the array helper:
Code:
$this->load->helper('array');
echo element('session_id',get_object_vars($this->session));

get_object_vars is needed to get the properties of the session object.

Cristian Gilè


Messages In This Thread
How to display all session variables - by El Forum - 01-14-2011, 09:01 AM
How to display all session variables - by El Forum - 01-14-2011, 09:12 AM
How to display all session variables - by El Forum - 01-14-2011, 09:21 AM
How to display all session variables - by El Forum - 01-14-2011, 09:30 AM
How to display all session variables - by El Forum - 01-14-2011, 10:31 AM
How to display all session variables - by El Forum - 01-14-2011, 11:50 AM
How to display all session variables - by El Forum - 01-14-2011, 12:03 PM
How to display all session variables - by El Forum - 01-14-2011, 12:58 PM
How to display all session variables - by El Forum - 01-14-2011, 03:47 PM
How to display all session variables - by El Forum - 01-14-2011, 03:51 PM



Theme © iAndrew 2016 - Forum software by © MyBB