* 암호화
if(!function_exists('password_hash')) {
$this->load->helper('password');
}
$hash = password_hash($this->input->post('password'),PASSWORD_BCRYPT); // 암호화된 비밀번호
* 로그인 검증
if($this->input->post('email') && password_verify($this->input->post('password'),$user->password)) {
// 성공
} else {
// 실패
}
'php, codeigniter' 카테고리의 다른 글
메일 전송하기 (0) | 2014.10.15 |
---|---|
url 헬퍼 - site_url / redirect (0) | 2014.10.15 |
세션(session) 이용하기 (0) | 2014.10.15 |
로그파일 설정 및 처리 (0) | 2014.10.14 |
config[] 환경 설정하기 (0) | 2014.10.14 |