반응형
$this->form_validation->set_rules( 'username', '아이디', 'trim|required|xss_clean' );
에서 자꾸 오류가 나서 알아보니, xss_clean 은 code igniter 3.0 에서는 없어진 듯 하다.
변수값을 가져올 때.
$this->input->post('some_data',TRUE);
두번째 TRUE 옵션 그자체가, xss_clean 옵션이다...
전체적으로 옵션을 줄 때에는
$config['global_xss_filtering'] = TRUE;
를 config/config.php 에 설정하면 된다.
반응형
'개발 > PHP' 카테고리의 다른 글
[PHP][mysql] inet_aton('::1') 에러 (0) | 2017.02.11 |
---|---|
[코드이그나이터 Codeigniter] Codeigniter 로 알아본 redirect location refresh 의 차이 (0) | 2017.01.19 |
[PHP] PDO BindValue 와 BindParam 의 차이 (0) | 2016.02.09 |
[PHP] strpos, stripos (0) | 2016.01.19 |
[이클립스]cannot create linked resource '/.org.eclipse.dltk.core.external.folders/.link1'. the parent resource is not accessible. (0) | 2015.07.17 |
[PHP][이클립스] 이클립스에서 class code assist 가 안 될 때 (0) | 2015.07.16 |
[PHP] 사진이 회전되서 올라갈 경우. (exif_read_data 모듈 사용) (0) | 2014.06.11 |
[PHP] print_r 로 변수에 담기 (0) | 2013.10.31 |