Codeigniter-获取所有用户会话数据
问题描述:
我需要获取所有会话数据并对它们执行一些操作,有没有可能获取它们的方法,我发现了如何在php中解决它,但codeigniter使用了它自己的自定义会话库。
I need to get all sessions data and take some actions upon them, is there any possible way to get them, I found how to solve it in php but codeigniter use's it own custom sessions library.
原生php
$ _ SESSION
如何在codeigniter中完成
How can I do it in codeigniter
答
要获取所有会话数据,可以使用 $ this-> session-> all_userdata();
To get all session data you can use $this->session->all_userdata();
要打印所有会话变量,请在代码中的任意位置使用此行:
To print all your session variable use this line anywhere in your code :
echo '<pre>'; print_r($this->session->all_userdata());exit;