您好,登錄后才能下訂單哦!
小編給大家分享一下Codeigniter如何實現處理用戶登錄驗證后的URL跳轉,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
Codeigniter處理用戶登錄驗證后URL跳轉,主要涉及到了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地址:
<?php echo form_open(site_url("/auth/login?redirect=".$redirect)); ?> */ }
在login_form中需要注意,提交表單的form地址為:
<?php echo form_open(site_url("/auth/login?redirect=".$redirect)); ?>
以上是“Codeigniter如何實現處理用戶登錄驗證后的URL跳轉”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。