1,注意:
用戶密碼登入的時候,把密碼存入session中,需要在config.php檔案中設定秘鑰;
然後在autoload.php檔案中設定session自動載入;
2,使用方法
登入密碼使用者名稱核對正確後,把密碼使用者名稱存入更安全的存入session
$sessionData = array( 'username' => $username, 'password' => $password, 'time' => time() ); $this->session->set_userdata($sessionData);
3,取出session
$this->session->userdata("xxxxxxxxx"); (userdata中放取出的字段)
4,config.phpsession
$config['sess_save_path'] =BASEPATH.'../'.'session_file';4,config.phpsession
A PHP Error was encountered Severity: Warning Message: mkdir(): Invalid path Filename: drivers/Session_files_driver.php Line Number: 117 Backtrace: File: /Library/WebServer/Documents/CI/cinews/ci/index.php Line: 316 Function: require_once
rrreee
session資料夾存在根目錄下,session_file資料夾會自動建立
沒有設定的話就會報錯一下:
rrreee
以上是CI框架中登入時使用加密框架中登入的內容的內容以及session 的內容。 ,更多相關內容請關注PHP中文網(www.php.cn)!