我是 CodeIgniter 框架的新手。我使用的是 2.1.4 版本。我设计了一个简单的登录表单,带有 javascript 验证和网站主页。您能帮我了解如何声明会话,以及如何在单击退出链接时销毁会话。
登录页面的控制器文件(加载视图页面 login.php):-
class Login extends CI_Controller {
function __construct() {
parent::__construct();
$this->load->helper('url');
}
function index(){
$this->load->view('login');
}
function success() {
redirect ('home');
}
}
视图 home.php 的控制器文件 home.php
class Home extends CI_Controller {
// local constructor will be overriding the one in the parent controller class
// for using a constructor in any of my Controllers
function __construct() {
parent::__construct();
}
public function index()
{
$this->load->view('home');
}
}
我设计了查看页面 home.php,并给出了登出链接:-
<div class="logout"><a href="">Signout</a></div>
为了初始化会话,我需要知道所有构造函数更改/配置更改需要什么,以及会话销毁的方法。