CodeIgniter 업로드 라이브러리에서 파일 해시로 업로드하자
·
Dev
set_filename를 찾아 아래와 같이 바꿔줍니다. public function set_filename($path, $filename) { if ($this->encrypt_name == TRUE) { $filename = hash_file('sha256', $this->file_temp).$this->file_ext; } return $filename; } do_upload에 아래 줄을 찾아 if ($this->overwrite == FALSE) { $this->file_name = $this->set_filename($this->upload_path, $this->file_name); if ($this->file_name === FALSE) { return FALSE; } } 아래와 같이 바꿔줍니..