Codeigniter入門學習筆記12—session操做

  • 好久好久之前學習Codeigniter的筆記記錄,很隨意,但都是本身記錄的,但願對須要的人有所幫助。
  • 本文使用word2013編輯併發布
  • Postbird | There I am , in the world more exciting!
  • Postbird personal website : http://www.ptbird.cn

    session web

CI中的session是存在cookie中的 cookie

一、session數據的存儲 session

$this->session->set_userdata('user',$user); 併發

    user是key 學習

    $data是值 ui

二、不獲取剛設置的數據 this

    只有頁面從新加載後,跳轉到別的控制器或者url中才能獲取到 加密

三、錯誤處理 url

    In order to use the Session class you are required to set an encryption key in your config file. spa

    進行配置

    1) 生成一個隨機不重複的串 echo md5(uniqid());

    2) 修改配置文件 $config['encryption_key']

 

四、配置

 

其中 $config['sess_encrypt_cookie']    = TRUE會再加一層加密

 

五、flash數據/一次性數據

    //只能讀取一次

    

//再次刷新就沒了

    

相關文章
相關標籤/搜索