溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Codeigniter如何實(shí)現(xiàn)處理用戶登錄驗(yàn)證后的URL跳轉(zhuǎn)

發(fā)布時間:2021-08-21 17:57:46 來源:億速云 閱讀:243 作者:小新 欄目:開發(fā)技術(shù)

小編給大家分享一下Codeigniter如何實(shí)現(xiàn)處理用戶登錄驗(yàn)證后的URL跳轉(zhuǎn),相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

Codeigniter處理用戶登錄驗(yàn)證后URL跳轉(zhuǎn),主要涉及到了My_Controller.php頁面以及登錄驗(yàn)證模塊User.php頁面,具體代碼如下:

My_Controller.php頁面:

class MY_Controller extends CI_Controller
{
    public function __construct()
    {
        parent::__construct();
        /*判斷是否登錄,判斷當(dāng)前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'];
            }
            /*跳轉(zhuǎn)到用戶登陸頁面,指定Login后跳轉(zhuǎn)的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如何實(shí)現(xiàn)處理用戶登錄驗(yàn)證后的URL跳轉(zhuǎn)”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI