ssouf
Codeigniter3 에서 Mcrypt 시놀로지 web station php 본문
시놀로지에서 Mcrypt 가 보안이슈로 인해 더이상 설치가 불가합니다. OpenSSL 앞으로는 사용해야 합니다.
$this->load->library('encrypt'); encrypt 라이브러리 대신 다음처럼 encryption 라이브러리를 사용합니다.
$this->load->library('encryption');
$this->encrypt->encode() 대신 $this->encryption->encrypt()
$this->encrypt->decode() 대신 $this->encryption->decrypt()
'Web DEV > CodeIgniter' 카테고리의 다른 글
CodeIgniter 3.x An error occurred. (0) | 2016.09.28 |
---|---|
Assigning the return value of new by reference is deprecated (0) | 2012.07.12 |