1

コントローラーで簡単なログアウトURLを作成しましたが、次のようになります。

 class Auth extends MX_Controller{
        function logout(){
          $this->session->sess_destroy();
          $this->bootstrap->unsetUserCookie();

          redirect(base_url(),'',301);
        }
    }

それから

class Bootstrap{

function unsetUserCookie(){
    $CI =& get_instance();
    $CI->input->set_cookie(
      array(
        'name'=>'remember_me',
        'value'=>'',
        'expire'=>''
        ));
    $CI->input->set_cookie(
      array(
        'name'=>'remember_me_n',
        'value'=>'',
        'expire'=>''
        ));
    $CI->input->set_cookie(
      array(
        'name'=>'duser_lang',
        'value'=>'',
        'expire'=>''
        ));
    $CI->input->set_cookie(
      array(
        'name'=>'duser_country',
        'value'=>'',
        'expire'=>''
        ));
  }
}

私はセッションDBを使用しています。これらは私が使用している設定パラメータです:

$config['sess_cookie_name']     = 'sess_id';
$config['sess_expiration']      = 0; //24hours -> 8640
$config['sess_expire_on_close'] = TRUE;
$config['sess_encrypt_cookie']  = FALSE;
$config['sess_use_database']    = TRUE;
$config['sess_table_name']      = 'ci_session';
$config['sess_match_ip']        = FALSE;
$config['sess_match_useragent'] = TRUE;
$config['sess_time_to_update']  = 3000000000;

次に、単純なセッションライブラリを作成しましたが、これが何かをブロックできるかどうかはわかりませんが、エラーがまったく発生しない原因はないと思います:

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); 

/*We encode/decode all session data in base64 to avoid problems with multybityes data*/
class MY_Session extends CI_Session {

      function set_userdata($data, $singleVar = NULL) {

          if(is_array($data)){
            $newValues = array();
            foreach ($data as $key=>$value) {

                $newValues[$key] = base64_encode($value);
            }

              parent::set_userdata($newValues);
          }
        else{
            if(is_array($singleVar)){
            $newValues = array();
            foreach ($singleVar as $key=>$value) {

            $newValues[$key] = base64_encode($value);
            }
            //Encode $singleVar 
            parent::set_userdata($data, $newValues);
            }else{
                 parent::set_userdata($data, base64_encode($singleVar)); 
            }
        }
    }
      function set_flashdata($data, $singleVar = NULL) {

          if(is_array($data)){
            $newValues = array();
            foreach ($data as $key=>$value) {

                $newValues[$key] = base64_encode($value);
            }

              parent::set_flashdata($newValues);
          }
        else{
            if(is_array($singleVar)){
            $newValues = array();
            foreach ($singleVar as $key=>$value) {

            $newValues[$key] = base64_encode($value);
            }
            //Encode $singleVar 
            parent::set_flashdata($data, $newValues);
            }else{
                 parent::set_flashdata($data, base64_encode($singleVar)); 
            }
        }
    }
     public function userdata($item) {

         $data = parent::userdata($item);
         if(is_array($data)){
            $newData = array();
            foreach ($data as $key => $value) {
                $newData[$key] = base64_decode($value);
            }
            return $newData;
         }else{
        //Decode $data
        return base64_decode($data);
    }
}



}



/* End of file  */
/* Location: ./application/controllers/ */

?>

URLは非常に単純で、セッションとCookieを削除するだけでしたが、ログアウトURLを起動した後もセッションとCookieは削除されていないようです。

手がかりはありますか?

4

2 に答える 2

0

私は同じ問題を抱えていました。それはキャッシュの問題でした。これは、コンストラクター関数またはログイン コードが関連するその他の関数内に以下のヘッダー コードを追加することで解決できます。

header("Cache-Control: no-cache, must-revalidate");

于 2017-01-07T03:57:12.277 に答える
0

あなたのコードはfasleです:

class Auth extends MX_Controller{
        function logout(){
          $this->session->sess_destroy();
          $this->bootstrap->unsetUserCookie();

          redirect(base_url(),'',301);
        }
    }

this extends は MY_Controller です。

class Auth extends MY_Controller{
于 2013-09-27T00:23:24.013 に答える