Codeigniter flashdata无法清除

时间:2018-10-30 13:36:54

标签: codeigniter

我已经尝试过在所有类似标题的答案中使用……但是什么都没有用…… 我有flashdata消失的问题...

我的代码: 控制器

public function index() {

    $this->load->library('session');
    $this->load->view('welcome_message');

}

public function refresh() {

    redirect('/welcome');

}

public function set() {

    $this->load->library('session');
    $_SESSION['item'] = 'Nastaveny flash!';
    $this->session->mark_as_flash('item');
    redirect('/welcome');

}

public function destroy() {

    $this->load->library('session');
    $this->session->unset_userdata('item');
    redirect('/welcome');

}

我的视图

...
<body>

<a href="/welcome/refresh">Refresh</a><br>
<a href="/welcome/set">Nastavit</a><br>
<a href="/welcome/destroy">Odebrat</a>

<br><br><br><br>

<?php 

echo $this->session->flashdata('item');

?>

<br><br><br><br>

<?php 

echo $this->session->item;

?>

</body>
...

我没有更改系统和应用程序中的任何内容...它是CI的唯一全新安装

在这里administration.kanci-strz.cz

0 个答案:

没有答案
相关问题