扩展Codeigniter的用户登录验证_PHP教程
程序员文章站
2022-06-11 10:20:46
...
需要修改My_Controller.php以及控制器的登录验证模块User.php,代码如下:
My_Controller.php
class MY_Controller extends CI_Controller { public function __construct() { parent::__construct(); /*判断是否登录,判断当前URL是否是auth/login*/ if ( ! $this->tank_auth->is_logged_in() && ( $this->router->fetch_class() != 'auth' && $this->router->fetch_method() != 'login')) { $redirect = $this->uri->uri_string(); if ( $_SERVER['QUERY_STRING']) { $redirect .= '?' . $_SERVER['QUERY_STRING']; } /*跳转到用户登陆页面,指定Login后跳转的URL*/ redirect('auth/login?redirect='.$redirect); } } }
User.php
class User extends MY_Controller { function login() { if ($this->tank_auth->is_logged_in()) { // logged in redirect('/'); } else { //other codes here...... /*判断是否有redirect信息*/ $data['redirect'] = isset($_GET['redirect']) ? $_GET['redirect'] : '/'; if ($this->form_validation->run()) { // validation ok if ($this->tank_auth->login( $this->form_validation->set_value('login'), $this->form_validation->set_value('password'), $this->form_validation->set_value('remember'), $data['login_by_username'], $data['login_by_email'])) { // success redirect($data['redirect']); } else { //error handling } } $this->load->view("login_form") } } }
Note: 在login_form中需要注意,提交表单的form地址:
在login_form中需要注意,提交表单的form地址:
上一篇: CodeIgniter扩展核心类实例详解
推荐阅读
-
基于PHP实现用户登录注册功能的详细教程
-
从零开始实现asp.net MVC4框架网站的用户登录以及权限验证模块 详细教程
-
Ajax实时验证用户名/邮箱等是否已经存在的代码打包_PHP教程
-
一个完整、安全的用户登录系统_PHP教程
-
Codeigniter实现处理用户登录验证后的URL跳转_php实例
-
php验证用户输入的邮箱有效性和正确性_PHP教程
-
php可扩展的验证类实例(可对邮件、手机号、URL等验证),实例url_PHP教程
-
php下获取Discuz论坛登录用户名、用户组、用户ID等信息的实现代码_PHP教程
-
PHP中session共享和登录验证的实现方法_PHP教程
-
扩展Codeigniter的用户登录验证_PHP教程