与数据库的Codeigniter会话不在localhost中工作但在服务器中工作

时间:2018-04-16 09:10:43

标签: php codeigniter

我想在我的localhost上的主页中获取会话信息,但我没有得到它。但是在我的服务器上获取此信息。

在Localhost中: - enter image description here

在服务器中: -

enter image description here

我正在尝试使用以下代码: -

print_r($this->session);

1 个答案:

答案 0 :(得分:0)

您可以在Codeigniter中将数据设置为会话,如下所示:

$this->load->library('session');
$this->session->set_userdata(array(
    'user_id'  => $user->uid,
    'username' => $user->username,
    'groupid'  => $user->groupid,
    'date'     => $user->date_cr,
    'serial'   => $user->serial,
    'rec_id'   => $user->rec_id,
    'status'   => TRUE
));

你可以这样得到它:

$u_rec_id = $this->session->userdata('rec_id');
$serial = $this->session->userdata('serial');
相关问题